From 18655e2b25d73d2026ba5c05b74f4b7cebf6d0b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=A4ggmark?= Date: Wed, 10 Dec 2025 08:03:33 +0100 Subject: [PATCH] [release-11.6.9] Plugins: Add PluginContext to plugins when scenes is disabled (#115060) Plugins: Add PluginContext to plugins when scenes is disabled (#114989) Plugins: Add PluginContext to plugins when scenes is disabled (cherry picked from commit d1761606fb3f1c698e597276ec0e0f1fa0e14f8d) --- .../dashboard/dashgrid/PanelStateWrapper.tsx | 45 ++++++++++--------- 1 file changed, 24 insertions(+), 21 deletions(-) diff --git a/public/app/features/dashboard/dashgrid/PanelStateWrapper.tsx b/public/app/features/dashboard/dashgrid/PanelStateWrapper.tsx index 4f3d12cd7d6..2acae2caa00 100644 --- a/public/app/features/dashboard/dashgrid/PanelStateWrapper.tsx +++ b/public/app/features/dashboard/dashgrid/PanelStateWrapper.tsx @@ -17,6 +17,7 @@ import { PanelData, PanelPlugin, PanelPluginMeta, + PluginContextProvider, SetPanelAttentionEvent, TimeRange, toDataFrameDTO, @@ -523,27 +524,29 @@ export class PanelStateWrapper extends PureComponent { return ( <> - - {config.featureToggles.panelMonitoring && this.state.errorMessage === undefined && ( - - )} + + + {config.featureToggles.panelMonitoring && this.state.errorMessage === undefined && ( + + )} + );