We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4cfea1 commit cb00e1bCopy full SHA for cb00e1b
src/material-examples/table-overview/table-overview-example.ts
@@ -34,6 +34,9 @@ export class TableOverviewExample {
34
filterValue = filterValue.trim(); // Remove whitespace
35
filterValue = filterValue.toLowerCase(); // Datasource defaults to lowercase matches
36
this.dataSource.filter = filterValue;
37
+ if (this.dataSource.paginator) {
38
+ this.dataSource.paginator.firstPage();
39
+ }
40
}
41
42
0 commit comments