triggers: do not refresh panel if target wasn't changed

This commit is contained in:
Alexander Zobnin
2018-11-15 10:47:20 +03:00
parent e408c77411
commit 61177cd409

View File

@@ -92,8 +92,8 @@ class TriggersTabCtrl {
var newTarget = _.cloneDeep(this.panel.targets);
if (!_.isEqual(this.oldTarget, newTarget)) {
this.oldTarget = newTarget;
this.panelCtrl.refresh();
}
this.panelCtrl.refresh();
});
}