I\'m having trouble with importing matSort into my matTable.
I\'m providing you with my code:
dashboard.component.ts
I had the same issue,
There are a couple of reasons for this issue
import { MatSortModule, MatPaginatorModule, MatTableModule } from '@angular/material';
@NgModule({
imports: [MatSortModule, MatPaginatorModule, MatTableModule],
exports: []
})
ngAfterViewInit() {
this.sort.sortChange.subscribe(() => this.paginator.pageIndex = 0 );
}