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
Starting with v6.3.0 of rxjs and rxjs-compat, you may experience run-time errors or incorrect behavior. These are caused by failing instanceof checks for Observable due to ReactiveX/rxjs#4070
Symptoms
Starting with v6.3.0 of
rxjs
andrxjs-compat
, you may experience run-time errors or incorrect behavior. These are caused by failinginstanceof
checks forObservable
due to ReactiveX/rxjs#4070For example, the Grid - Confirmation Dialog on Row Removal sample will not work. Many other scenarios could also be affected.
Workaround
There are two suggested workarounds:
A) Override TypeScript compiler options
Use the approach suggested by @s25g5d4 in the upstream issue.
Add the
path
section below tocompilerOptions
insrc/tsconfig.app.json
:B) Pin RxJS version at 6.2.x
You can lock your application to the unaffected 6.2.x version of rxjs by issuing the following command:
Solution
We're considering the possibilities for a permanent fix and will post updates.
The text was updated successfully, but these errors were encountered: