From 97d02174ace046ce2eb77e67c65f818bce52e0be Mon Sep 17 00:00:00 2001 From: "grafana-delivery-bot[bot]" <132647405+grafana-delivery-bot[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 13:50:40 +0300 Subject: [PATCH] [v11.0.x] Dashboards: Add isViewing to mustKeepProps (#85786) Dashboards: Add isViewing to mustKeepProps (#85748) (cherry picked from commit 02096c4e22c2813eeb269262579e4aba2f523c2c) Co-authored-by: kay delaney <45561153+kaydelaney@users.noreply.github.com> --- public/app/features/dashboard/state/PanelModel.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/features/dashboard/state/PanelModel.ts b/public/app/features/dashboard/state/PanelModel.ts index 08d68628972..97d58089a15 100644 --- a/public/app/features/dashboard/state/PanelModel.ts +++ b/public/app/features/dashboard/state/PanelModel.ts @@ -98,6 +98,7 @@ const mustKeepProps: { [str: string]: boolean } = { links: true, fullscreen: true, isEditing: true, + isViewing: true, hasRefreshed: true, events: true, cacheTimeout: true,