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

This commit is contained in:
Torkel Ödegaard
2021-05-02 19:54:18 +02:00
committed by GitHub
parent 49e9f7e3b6
commit 09051051a9

View File

@@ -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;
}