Skip to content

Commit

Permalink
Merge pull request #14433 from FabioLucenaRibas/issues-14432
Browse files Browse the repository at this point in the history
Fixed #14432
  • Loading branch information
cetincakiroglu authored Jan 4, 2024
2 parents ce823cd + 310544a commit ed8f7b6
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 @@ -2033,7 +2033,7 @@ export class Table implements OnInit, AfterViewInit, AfterContentInit, Blockable
clearTimeout(this.filterTimeout);
}
if (!this.isFilterBlank(value)) {
this.filters[field] = { value: value, matchMode: matchMode };
this.filters[field] = field == 'global'? { value: value, matchMode: matchMode } : [{ value: value, matchMode: matchMode }];
} else if (this.filters[field]) {
delete this.filters[field];
}
Expand Down

0 comments on commit ed8f7b6

Please sign in to comment.