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 27, 2023
1 parent e3a643c commit abb6b53
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 @@ -5485,7 +5485,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 abb6b53

Please sign in to comment.