I am trying to get the mat-table sorting to work locally, and while I can get the data to show up as expected, clicking on the header row does not do the sortin
mat-table
There were 2 issues for me.
I was getting the data from the service. The ngOnInit sort was not working. Replaced with
ngAfterViewInit() { this.dataSource.sort = this.sort; }