From 6362eb7b5292209abd9d473792cf3ecb55ade452 Mon Sep 17 00:00:00 2001 From: Akshat Jawne <69530774+AkshatJawne@users.noreply.github.com> Date: Thu, 18 Jul 2024 11:45:25 -0600 Subject: [PATCH] fix: add back panel prop to IrisGrid Plugin (#2155) Closes #2093 (For now, will reopen ticket after merge for better solution to handle deprecated `panel` prop) --- .../dashboard-core-plugins/src/panels/IrisGridPanel.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/dashboard-core-plugins/src/panels/IrisGridPanel.tsx b/packages/dashboard-core-plugins/src/panels/IrisGridPanel.tsx index a16cdd780..858e41a35 100644 --- a/packages/dashboard-core-plugins/src/panels/IrisGridPanel.tsx +++ b/packages/dashboard-core-plugins/src/panels/IrisGridPanel.tsx @@ -423,6 +423,11 @@ export class IrisGridPanel extends PureComponent< return null; } + // TODO #2093: Find a better way to handle deprecated panel prop + const deprecatedProps = { + panel: this, + }; + return (
);