From 3d47e4b9ce9742083f587d752b275edcdb10e183 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20=C3=87etin?= <92744169+mehmetcetin01140@users.noreply.github.com> Date: Fri, 16 Feb 2024 17:31:29 +0300 Subject: [PATCH] Fixed #14775 - Table | ColumnFilter not hiding when another filter icon clicked and previously any input field clicked in still in focus --- 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 9f8c0fed217..f5f3deccbfb 100644 --- a/src/app/components/table/table.ts +++ b/src/app/components/table/table.ts @@ -5594,7 +5594,7 @@ export class ColumnFilter implements AfterContentInit { const documentTarget: any = this.el ? this.el.nativeElement.ownerDocument : 'document'; this.documentClickListener = this.renderer.listen(documentTarget, 'mousedown', (event) => { - if (this.overlayVisible && !this.selfClick && this.isOutsideClicked(event)) { + if (this.overlayVisible && this.isOutsideClicked(event)) { this.hide(); }