-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bindings not updating automatically #44
Comments
Weird... Btw when I change the imports of |
The change I made was: -import 'zone.js/dist/zone'; // Included with Angular CLI.
+import 'zone.js/dist/zone-mix'; // Included with Angular CLI. and in -import 'zone.js';
+import 'zone.js/dist/zone-mix'; // Included with Angular CLI. You need to change both to not get the error |
Was working with the latest version of the repo (Angular 7), found that the zone-mix is reverted back to zone in polyfills.ts. I was facing the same binding issue which is mentioned here. I changed the zone to zone-mix and now it works. Was this change done on purpose ?? Or did I miss some thing ? |
Why was this closed ? It's still not working. |
After some research I had to change the imports of
zone.js
tozone.js/dist/zone-mix
insrc/app/app.module.ts
andsrc/polyfills.ts
.See: angular/zone.js#537
The text was updated successfully, but these errors were encountered: