Skip to content

Commit

Permalink
Revert #14433
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Mar 14, 2024
1 parent 2da2360 commit 30f6366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/table/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2046,7 +2046,7 @@ export class Table implements OnInit, AfterViewInit, AfterContentInit, Blockable
clearTimeout(this.filterTimeout);
}
if (!this.isFilterBlank(value)) {
this.filters[field] = field == 'global' ? { value: value, matchMode: matchMode } : [{ value: value, matchMode: matchMode }];
this.filters[field] = { value: value, matchMode: matchMode };
} else if (this.filters[field]) {
delete this.filters[field];
}
Expand Down

0 comments on commit 30f6366

Please sign in to comment.