From ef0cc4fd75f252478252dec5f06242c3c1a95474 Mon Sep 17 00:00:00 2001 From: Oscar Kilhed Date: Thu, 31 Jul 2025 17:13:23 +0200 Subject: [PATCH] Dashboards: Fix issue where the time range picker would seemingly be hidden behind the side menu if it was set to always open. (#108607) Unset overflow hidden to make sure the time range picker is fully visible --- .../features/dashboard-scene/panel-edit/PanelEditorRenderer.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/features/dashboard-scene/panel-edit/PanelEditorRenderer.tsx b/public/app/features/dashboard-scene/panel-edit/PanelEditorRenderer.tsx index 6071c79f41a..9aee611d4f0 100644 --- a/public/app/features/dashboard-scene/panel-edit/PanelEditorRenderer.tsx +++ b/public/app/features/dashboard-scene/panel-edit/PanelEditorRenderer.tsx @@ -195,6 +195,7 @@ function getStyles(theme: GrafanaTheme2) { position: 'absolute', width: '100%', height: '100%', + overflow: 'unset', }), body: css({ label: 'body',