From fc8a7538925570ecafead562afb6d0a7f0203ec5 Mon Sep 17 00:00:00 2001 From: Ivan Ortega Alba Date: Mon, 13 Mar 2023 17:47:52 +0100 Subject: [PATCH] PanelChrome: Do not show menu when panel is embedded (#64549) --- public/app/features/dashboard/containers/SoloPanelPage.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/app/features/dashboard/containers/SoloPanelPage.tsx b/public/app/features/dashboard/containers/SoloPanelPage.tsx index f81bcfcb5e3..04fc483129a 100644 --- a/public/app/features/dashboard/containers/SoloPanelPage.tsx +++ b/public/app/features/dashboard/containers/SoloPanelPage.tsx @@ -123,9 +123,10 @@ export const SoloPanel = ({ dashboard, notFound, panel, panelId, timezone }: Sol dashboard={dashboard} panel={panel} isEditing={false} - isViewing={false} + isViewing={true} lazy={false} timezone={timezone} + hideMenu={true} /> ); }}