We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd358a9 commit fd0b2feCopy full SHA for fd0b2fe
source/connect/connect-base.ts
@@ -12,7 +12,7 @@ import { Subscription } from 'rxjs';
12
13
import { Unsubscribe } from 'redux';
14
15
-import 'rxjs/add/operator/debounceTime';
+import { debounceTime } 'rxjs/operators';
16
17
import { FormStore } from '../form-store';
18
import { State } from '../state';
@@ -71,7 +71,7 @@ export class ConnectBase {
71
72
Promise.resolve().then(() => {
73
this.formSubscription = (<any>this.form.valueChanges)
74
- .debounceTime(0)
+ .pipe(debounceTime(0))
75
.subscribe((values: any) => this.publish(values));
76
});
77
0 commit comments