We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ac7a0b commit 287f477Copy full SHA for 287f477
frontend/src/components/data-table/row-viewer-panel/use-panel-ownership.ts
@@ -35,12 +35,12 @@ export function usePanelOwnership(
35
36
const isPanelOpen = panelOwner === panelId && isContextAwarePanelOpen;
37
38
- // In cell-aware mode, update panel owner when cell is focused
39
- // Only set panel owner if no other table in this cell is currently the owner
40
const thisCellIsFocused = lastFocusedCellId === cellId;
41
const currentOwnerIsInThisCell =
42
panelOwner && isPanelOwner(panelOwner, cellId);
43
+ // In cell-aware mode, update panel owner when cell is focused
+ // Only set panel owner if no other table in this cell is currently the owner
44
if (
45
isPanelCellAware &&
46
thisCellIsFocused &&
0 commit comments