Skip to content

Instantly share code, notes, and snippets.

@siddharthpal
Last active October 13, 2019 17:40
Show Gist options
  • Save siddharthpal/7c034ed1c3ff43deefce8fc9838ade5e to your computer and use it in GitHub Desktop.
Save siddharthpal/7c034ed1c3ff43deefce8fc9838ade5e to your computer and use it in GitHub Desktop.
Wrapping @input method inside ngZone run method
@Input() public pushTodoItem = todo => {
this.ngZone.run(() => {
this.todos.push(todo);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment