diff --git a/public/app/plugins/panel/gauge/Thresholds.tsx b/public/app/plugins/panel/gauge/Thresholds.tsx index fe929e1cb5f..56f84621770 100644 --- a/public/app/plugins/panel/gauge/Thresholds.tsx +++ b/public/app/plugins/panel/gauge/Thresholds.tsx @@ -46,9 +46,12 @@ export default class Thresholds extends PureComponent { - this.setState(prevState => ({ - thresholds: prevState.thresholds.filter(t => t !== threshold), - })); + this.setState( + prevState => ({ + thresholds: prevState.thresholds.filter(t => t !== threshold), + }), + () => this.updateGauge() + ); }; onChangeThresholdValue = (event, threshold) => {