From ff26c5f69cc232724cba51a2ef0c5e8181d36dae Mon Sep 17 00:00:00 2001 From: Rajat Dabade Date: Fri, 29 Dec 2023 12:23:27 +0530 Subject: [PATCH] fix: make fill gap persistent (#4302) --- frontend/src/container/NewWidget/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/container/NewWidget/index.tsx b/frontend/src/container/NewWidget/index.tsx index e4f40ee2ac..8edf04c49c 100644 --- a/frontend/src/container/NewWidget/index.tsx +++ b/frontend/src/container/NewWidget/index.tsx @@ -178,6 +178,7 @@ function NewWidget({ selectedGraph }: NewWidgetProps): JSX.Element { yAxisUnit, panelTypes: graphType, thresholds, + fillSpans: isFillSpans, }, ...afterWidgets, ], @@ -212,6 +213,7 @@ function NewWidget({ selectedGraph }: NewWidgetProps): JSX.Element { yAxisUnit, graphType, thresholds, + isFillSpans, afterWidgets, updateDashboardMutation, setSelectedDashboard,