From 72a087d5bb2bc5c89cca8d76e6fae3778c54adce Mon Sep 17 00:00:00 2001 From: Guillaume LADORME Date: Thu, 17 Sep 2026 15:38:28 +0200 Subject: [PATCH] [BUGFIX] Fix zIndex for OverflowMenu Signed-off-by: Guillaume LADORME --- dashboards/src/components/Panel/PanelActions.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/dashboards/src/components/Panel/PanelActions.tsx b/dashboards/src/components/Panel/PanelActions.tsx index 6284a4b4..4833b984 100644 --- a/dashboards/src/components/Panel/PanelActions.tsx +++ b/dashboards/src/components/Panel/PanelActions.tsx @@ -421,6 +421,7 @@ export const OverflowMenu: React.FC< }, ]} sx={{ + zIndex: 6, // Must be higher than PanelHeader zIndex (5) backgroundColor: (theme) => theme.palette.background.paper, borderRadius: 1, boxShadow: (theme) => theme.shadows[4],