From 530e0f86e4c066a856a9010655cde3cc9232465f Mon Sep 17 00:00:00 2001 From: Ryan McKinley Date: Mon, 14 Dec 2020 12:22:21 -0800 Subject: [PATCH] QueryEditor: do not auto refresh on every update (#29762) --- .../dashboard/components/PanelEditor/PanelEditorQueries.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/public/app/features/dashboard/components/PanelEditor/PanelEditorQueries.tsx b/public/app/features/dashboard/components/PanelEditor/PanelEditorQueries.tsx index f0f059fe786..dc163270b46 100644 --- a/public/app/features/dashboard/components/PanelEditor/PanelEditorQueries.tsx +++ b/public/app/features/dashboard/components/PanelEditor/PanelEditorQueries.tsx @@ -56,7 +56,6 @@ export class PanelEditorQueries extends PureComponent { panel.hideTimeOverride = options.timeRange?.hide; panel.interval = options.minInterval; panel.maxDataPoints = options.maxDataPoints; - panel.refresh(); this.setState({ options: options }); };