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
DropDownList component uses rxjs patching, but forgets to include "import 'rxjs/add/observable/merge" that it uses.
This will fail builds that use lettable operators.
Expected behavior
Use that import or start using lettable operators for benefits.
Minimal reproduction of the problem with instructions
It can be seen in source of the component that Observable.merge is used, but never imported.
What is the motivation or use case for changing the behavior?
Builds to work correctly without having to patch the error locally.
This is an error that first gets picked up in production builds, so only seen when already built.
The text was updated successfully, but these errors were encountered:
This issue turned out to be more complicated than we initially thought. We're investigating the possible fixes. Worst case, we'll have to upgrade to the latest RxJS version with lettable operators - a breaking change for users that are still on older versions.
I'm submitting a...
Current behavior
DropDownList component uses rxjs patching, but forgets to include "import 'rxjs/add/observable/merge" that it uses.
This will fail builds that use lettable operators.
Expected behavior
Use that import or start using lettable operators for benefits.
Minimal reproduction of the problem with instructions
It can be seen in source of the component that Observable.merge is used, but never imported.
What is the motivation or use case for changing the behavior?
Builds to work correctly without having to patch the error locally.
This is an error that first gets picked up in production builds, so only seen when already built.
The text was updated successfully, but these errors were encountered: