Skip to content

Commit 9dff089

Browse files
author
Musa Demir
committed
Allows 'localize' pipe to work with multiple parameters
close aspnetboilerplate/aspnetboilerplate#5795
1 parent 7189a53 commit 9dff089

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

angular/src/shared/pipes/localize.pipe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ export class LocalizePipe extends AppComponentBase implements PipeTransform {
1111
}
1212

1313
transform(key: string, ...args: any[]): string {
14-
return this.l(key, args);
14+
return this.l(key, ...args);
1515
}
1616
}

0 commit comments

Comments
 (0)