style(base): add focus-preservation comment to status cell mousedown

This commit is contained in:
Philipinho
2026-04-18 15:07:05 +01:00
parent 88c906cdcd
commit b95f3033d1
@@ -165,6 +165,7 @@ export function CellStatus({
)} )}
onMouseEnter={() => setActiveIndex(idx)} onMouseEnter={() => setActiveIndex(idx)}
onMouseDown={(e) => { onMouseDown={(e) => {
// Keep focus on the search input so click doesn't blur + close popover.
e.preventDefault(); e.preventDefault();
}} }}
onClick={() => handleSelect(choice)} onClick={() => handleSelect(choice)}