Skip to content

Commit

Permalink
fix: #13672 || ColumnFilter in row mode and type date not trigger cha…
Browse files Browse the repository at this point in the history
…nge when value change
  • Loading branch information
ashikjs committed Sep 14, 2023
1 parent 23d8ee1 commit 1e99911
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 @@ -5484,7 +5484,7 @@ export class ColumnFilterFormElement implements OnInit {
onModelChange(value: any) {
(<any>this.filterConstraint).value = value;

if (this.type === 'boolean' || value === '') {
if (this.type === 'date' || this.type === 'boolean' || value === '') {
this.dt._filter();
}
}
Expand Down

0 comments on commit 1e99911

Please sign in to comment.