From 09051051a9d2f285c4fe6e93c93222c9bc4aaf49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Sun, 2 May 2021 19:54:18 +0200 Subject: [PATCH] Graph: Fixes threshold handles now showing up for graph thresholds (#33600) --- public/app/plugins/panel/graph/threshold_manager.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/app/plugins/panel/graph/threshold_manager.ts b/public/app/plugins/panel/graph/threshold_manager.ts index 2638277e5b9..741c9c76427 100644 --- a/public/app/plugins/panel/graph/threshold_manager.ts +++ b/public/app/plugins/panel/graph/threshold_manager.ts @@ -87,7 +87,8 @@ export class ThresholdManager { renderHandle(handleIndex: number, defaultHandleTopPos: number) { const model = this.thresholds[handleIndex]; - if (!model.visible) { + // alerting defines + if (!model.visible && (this.panelCtrl as any).alert) { return; }