fix: make fill gap persistent (#4302)

This commit is contained in:
Rajat Dabade 2023-12-29 12:23:27 +05:30 committed by GitHub
parent 9230f2442f
commit ff26c5f69c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -178,6 +178,7 @@ function NewWidget({ selectedGraph }: NewWidgetProps): JSX.Element {
yAxisUnit, yAxisUnit,
panelTypes: graphType, panelTypes: graphType,
thresholds, thresholds,
fillSpans: isFillSpans,
}, },
...afterWidgets, ...afterWidgets,
], ],
@ -212,6 +213,7 @@ function NewWidget({ selectedGraph }: NewWidgetProps): JSX.Element {
yAxisUnit, yAxisUnit,
graphType, graphType,
thresholds, thresholds,
isFillSpans,
afterWidgets, afterWidgets,
updateDashboardMutation, updateDashboardMutation,
setSelectedDashboard, setSelectedDashboard,