From b95f3033d1a5dbebb0e45709df7c04cb4c773285 Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Sat, 18 Apr 2026 15:07:05 +0100 Subject: [PATCH] style(base): add focus-preservation comment to status cell mousedown --- apps/client/src/features/base/components/cells/cell-status.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/client/src/features/base/components/cells/cell-status.tsx b/apps/client/src/features/base/components/cells/cell-status.tsx index 761ff746..5f2aee43 100644 --- a/apps/client/src/features/base/components/cells/cell-status.tsx +++ b/apps/client/src/features/base/components/cells/cell-status.tsx @@ -165,6 +165,7 @@ export function CellStatus({ )} onMouseEnter={() => setActiveIndex(idx)} onMouseDown={(e) => { + // Keep focus on the search input so click doesn't blur + close popover. e.preventDefault(); }} onClick={() => handleSelect(choice)}