From 62d0becd25503d5dc5778d5dfa50271d1c0954ff Mon Sep 17 00:00:00 2001 From: Esteban Beltran Date: Tue, 19 Sep 2023 09:11:56 +0200 Subject: [PATCH] Sandbox: Set sandbox wrapper to height 100% for panel plugins (#75004) Sandbox: Fix panel plugin not showing scrollbars --- public/app/features/plugins/sandbox/sandbox_components.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/app/features/plugins/sandbox/sandbox_components.tsx b/public/app/features/plugins/sandbox/sandbox_components.tsx index 671c37e38f6..c7264bd7c94 100644 --- a/public/app/features/plugins/sandbox/sandbox_components.tsx +++ b/public/app/features/plugins/sandbox/sandbox_components.tsx @@ -92,7 +92,10 @@ const withSandboxWrapper =

( ): React.MemoExoticComponent> => { const WithWrapper = React.memo((props: P) => { return ( -

+
);