Graph: Fixes threshold handles now showing up for graph thresholds (#33600)

pull/33598/head^2
Torkel Ödegaard 4 years ago committed by GitHub
parent 49e9f7e3b6
commit 09051051a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      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;
}

Loading…
Cancel
Save