From abb6b53be5a0a100e15c52ed4b5b6e3c4a7ad1a9 Mon Sep 17 00:00:00 2001 From: MD Ashik Date: Thu, 14 Sep 2023 18:20:51 +0600 Subject: [PATCH] fix: #13672 || ColumnFilter in row mode and type date not trigger change when value change --- src/app/components/table/table.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/table/table.ts b/src/app/components/table/table.ts index 7b381c1966b..99a7dc09228 100644 --- a/src/app/components/table/table.ts +++ b/src/app/components/table/table.ts @@ -5485,7 +5485,7 @@ export class ColumnFilterFormElement implements OnInit { onModelChange(value: any) { (this.filterConstraint).value = value; - if (this.type === 'boolean' || value === '') { + if (this.type === 'date' || this.type === 'boolean' || value === '') { this.dt._filter(); } }