From c43517d278b3db14353bf6091e6dcbc3aafb9527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Jamr=C3=B3z?= Date: Fri, 7 Feb 2025 12:05:45 +0100 Subject: [PATCH] Explore: Fix resizing split view with Loki query editor (#100257) --- .../src/components/ScrollContainer/ScrollContainer.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/grafana-ui/src/components/ScrollContainer/ScrollContainer.tsx b/packages/grafana-ui/src/components/ScrollContainer/ScrollContainer.tsx index 42f2ae08683..d3336e20780 100644 --- a/packages/grafana-ui/src/components/ScrollContainer/ScrollContainer.tsx +++ b/packages/grafana-ui/src/components/ScrollContainer/ScrollContainer.tsx @@ -34,6 +34,7 @@ export const ScrollContainer = forwardRef = { maxHeight: '100%', minHeight: 0, + minWidth: 0, }; const boxProps = { ...defaults, ...rest };