You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**angular:****KNOWN ISSUE**: usage directly with angular when listening to changes seems to require zone now (usage with state works fine, and its suggested)
10
+
```ts
11
+
this.connection.on<Hero>("HeroChanged").pipe(
12
+
// ... change ui
13
+
// tap(() => this.cdr.markForCheck()), // used to work
14
+
tap(() =>this.ngZone.run(() =>this.cdr.markForCheck())), // with @microsoft/signalr 6.x is not working without zone
0 commit comments