Skip to content

Commit

Permalink
Merge pull request #13674 from ashikjs/issues-13672/table-column-filt…
Browse files Browse the repository at this point in the history
…er-date-type-not-work

fix: #13672 || ColumnFilter in row mode and type date not trigger
  • Loading branch information
cetincakiroglu committed Nov 22, 2023
2 parents f70d685 + abb6b53 commit 777a428
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 @@ -5653,7 +5653,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

1 comment on commit 777a428

@vercel
Copy link

@vercel vercel bot commented on 777a428 Nov 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.