File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ export class AngularFirePerformance {
84
84
)
85
85
} ;
86
86
87
- traceWhile = < T = any > ( name :string , test : ( a :T ) => boolean , options ?: TraceOptions & { orUntilComplete : boolean } ) => ( source$ : Observable < T > ) => {
87
+ traceWhile = < T = any > ( name :string , test : ( a :T ) => boolean , options ?: TraceOptions & { orComplete : boolean } ) => ( source$ : Observable < T > ) => {
88
88
let traceSubscription : Subscription | undefined ;
89
89
return source$ . pipe (
90
90
tap (
@@ -96,7 +96,7 @@ export class AngularFirePerformance {
96
96
}
97
97
} ,
98
98
( ) => { } ,
99
- ( ) => options && options . orUntilComplete && traceSubscription && traceSubscription . unsubscribe ( )
99
+ ( ) => options && options . orComplete && traceSubscription && traceSubscription . unsubscribe ( )
100
100
)
101
101
)
102
102
} ;
You can’t perform that action at this time.
0 commit comments