Angular material data is not rendering the data even though datasource has correct data to be displayed
Note: Paginator is working correctly according to the datasource
HTML
TS
this.assignmentDataSource = new MatTableDataSource<Assignment>(assignmentList); //assignmentList has data loaded
this.assignmentDataSource.paginator = this.paginator;
Output
Console
console.log(this.assignmentDataSource);
I want to know why the data is not rendering to the view
Thanks !!!



this.assignmentDataSource = new MatTableDataSource<any>(Object.values(assignmentList));