Skip to content

Instantly share code, notes, and snippets.

@ronnyek
Created September 18, 2019 20:25
Show Gist options
  • Select an option

  • Save ronnyek/094bc6a73142ce335f8d20b8d5e4e257 to your computer and use it in GitHub Desktop.

Select an option

Save ronnyek/094bc6a73142ce335f8d20b8d5e4e257 to your computer and use it in GitHub Desktop.
export class SomeComponent {
property: string;
...
someMethod(){
this.property = 'new value';
this.cdr.markForCheck();
}
constructor(private cdr: ChangeDetectorRef){ }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment