From c1291e3031722b36813b53d62307fc3f3b8e4b2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Wed, 16 Apr 2025 18:24:00 +0200 Subject: [PATCH] AutoGrid: Tweak height of short row height (#104115) AutoGrid: Tweak auto short height --- .../scene/layout-auto-grid/AutoGridLayoutManager.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/dashboard-scene/scene/layout-auto-grid/AutoGridLayoutManager.tsx b/public/app/features/dashboard-scene/scene/layout-auto-grid/AutoGridLayoutManager.tsx index b81b34d2d1f..310603190f4 100644 --- a/public/app/features/dashboard-scene/scene/layout-auto-grid/AutoGridLayoutManager.tsx +++ b/public/app/features/dashboard-scene/scene/layout-auto-grid/AutoGridLayoutManager.tsx @@ -306,7 +306,7 @@ function getNamedHeightInPixels(rowHeight: AutoGridRowHeight) { switch (rowHeight) { case 'short': - return 128; + return 168; case 'tall': return 512; case 'custom':