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 705ae02 commit 460c939Copy full SHA for 460c939
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