Skip to content

Commit 930e788

Browse files
authored
Ensure default value is passed to service (#2)
1 parent 1c4d7b0 commit 930e788

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/ng-lazy-translate/src/lib/pipe/translate.pipe.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ export class LazyTranslatePipe implements PipeTransform, OnDestroy {
2525
*/
2626
private readonly paramsSubscription = this.params$
2727
.pipe(distinctUntilChanged((previous, next) => isEqual(previous, next)))
28-
.subscribe(({ key, interpolateParams }) => {
28+
.subscribe(({ key, interpolateParams, defaultValue }) => {
2929
this.unsubscribe();
3030

31-
this.translationSubscription = this.translateService.translate(key, interpolateParams).subscribe(value => {
31+
this.translationSubscription = this.translateService.translate(key, interpolateParams, defaultValue).subscribe(value => {
3232
this.value = value;
3333

3434
this.changeDetectorRef.detectChanges();

0 commit comments

Comments
 (0)