From 6e3d253a6fe08e62a8992800f460a995244785bc Mon Sep 17 00:00:00 2001 From: Davit Pavlenishvili Date: Wed, 18 Sep 2024 22:01:59 +0400 Subject: [PATCH] fix(platform): prevent filter input from losing focus when entering spaces (#12367) Co-authored-by: Mike O'Donnell --- .../table-cell-header-popover.component.html | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/platform/table/components/table-cell-header-popover/table-cell-header-popover.component.html b/libs/platform/table/components/table-cell-header-popover/table-cell-header-popover.component.html index a8fb6116412..c05a5b31c56 100644 --- a/libs/platform/table/components/table-cell-header-popover/table-cell-header-popover.component.html +++ b/libs/platform/table/components/table-cell-header-popover/table-cell-header-popover.component.html @@ -100,6 +100,7 @@ fd-form-control [id]="'fdp-table-column-filtering-' + column.name" (keydown.enter)="_setColumnHeaderFilterBy(column.key, $any($event.target)?.value)" + (keydown)="$event.stopPropagation()" />