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 d8a0e88 commit 6e7e67cCopy full SHA for 6e7e67c
projects/mat-advanced-table/src/lib/mat-advanced-table.component.ts
@@ -169,7 +169,7 @@ export class MatAdvancedTableComponent
169
170
applyFilter(filterValue: string) {
171
if ((filterValue || "") === "" || (filterValue || "") === undefined) {
172
- this.dataSource.filteredData = this.data;
+ this.dataSource.filteredData = [...this._originalData];
173
return;
174
}
175
this.dataSource.filterPredicate = (object, filter) => {
0 commit comments