We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When doing async operations (Observable, setTimeout, ...) in a component init, the code executes as expected but the view doesn't get updated.
Reloading the component by changing route works as expected though.
Removing the this.appRef.tick() call in AppModule#hmrOnInit() seems to fix that, and so does making said call in a setTimeout().
this.appRef.tick()
AppModule#hmrOnInit()
setTimeout()
The text was updated successfully, but these errors were encountered:
Thanks for that! I had this issue with my observables as well and that seems to have resolved it.
Sorry, something went wrong.
yeah, that makes sense. can you edit the readme to mention this?
No branches or pull requests
When doing async operations (Observable, setTimeout, ...) in a component init, the code executes as expected but the view doesn't get updated.
Reloading the component by changing route works as expected though.
Removing the
this.appRef.tick()
call inAppModule#hmrOnInit()
seems to fix that, and so does making said call in asetTimeout()
.The text was updated successfully, but these errors were encountered: