Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZackDeRose/705f32ac209de56e4bd0e484a3daa3e7 to your computer and use it in GitHub Desktop.
Save ZackDeRose/705f32ac209de56e4bd0e484a3daa3e7 to your computer and use it in GitHub Desktop.
Snippet for Initializing tableDataSource$ for "Angular CDK Tables" article
ngOnInit() {
this.heroes$.subscribe(changedHeroData => {
this.tableDataSource$.next(Object.values(changedHeroData));
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment