Skip to content

Instantly share code, notes, and snippets.

@re4388
Created July 25, 2020 02:43
Show Gist options
  • Select an option

  • Save re4388/d3cc9c2bdecfb9103f281f1a27843ddb to your computer and use it in GitHub Desktop.

Select an option

Save re4388/d3cc9c2bdecfb9103f281f1a27843ddb to your computer and use it in GitHub Desktop.
ngAfterViewInit2
ngAfterViewInit() {
this.httpClient.get<any>('<https://api.github.com/search/issues?q=repo:angular/material2&page=1>').subscribe(data => {
this.totalCount = data.items.length;
this.emailsDataSource.data = data.items;
this.emailsDataSource.paginator = this.paginator;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment