From 621414ea6fa0b4de3578339606b135d43d9be571 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 13 May 2025 10:42:30 +0200 Subject: [PATCH] RowsLayout: Fixes issue with custom grid not showing (#104640) * RowsLayout: Fixes issue with custom grid not showing * Update --- .../dashboard-scene/scene/layout-rows/RowItemRenderer.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/app/features/dashboard-scene/scene/layout-rows/RowItemRenderer.tsx b/public/app/features/dashboard-scene/scene/layout-rows/RowItemRenderer.tsx index ccbc7bceda1..aaca9f028da 100644 --- a/public/app/features/dashboard-scene/scene/layout-rows/RowItemRenderer.tsx +++ b/public/app/features/dashboard-scene/scene/layout-rows/RowItemRenderer.tsx @@ -205,6 +205,8 @@ function getStyles(theme: GrafanaTheme2) { wrapper: css({ display: 'flex', flexDirection: 'column', + // Without this min height, the custom grid (SceneGridLayout) wont render + minHeight: `42px`, }), wrapperNotCollapsed: css({ '> div:nth-child(2)': {