Mat-table Sorting Demo not Working

For anyone else who may have this problem:
The problem was I didn’t read the API reference properly on the angular materials website, the part that said I had to import MatSortModule. After I changed my imports list in app.module.ts to

imports: [
    BrowserModule,
    MatTableModule,
    MatSortModule
  ],

it worked fine

Leave a Comment