Advertisement
Guest User

Untitled

a guest
Nov 29th, 2019
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   this.studentService.results$
  2.       .pipe(
  3.         // takeUntil(timer$)
  4.         )
  5.       .subscribe(data => {
  6.         if (data && data.length > 0) {
  7.           this.dataSource = new MatTableDataSource(data);
  8.           this.dataSource.paginator = this.paginator;
  9.           this.dataSource.sort = this.sort;
  10.         }
  11.       },
  12.       (error: any) => console.error(error),
  13.       () => console.log('complete')
  14.     );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement