Skip to content

Commit

Permalink
Fixed #14775 - Table | ColumnFilter not hiding when another filter ic…
Browse files Browse the repository at this point in the history
…on clicked and previously any input field clicked in still in focus
  • Loading branch information
mehmetcetin01140 committed Feb 16, 2024
1 parent 27065cf commit 3d47e4b
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 @@ -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();
}

Expand Down

0 comments on commit 3d47e4b

Please sign in to comment.