Fixed Triggers panel editor after plugin ids update.

This commit is contained in:
Alexander Zobnin
2016-04-06 19:59:38 +03:00
parent a6041e9976
commit 5f6486e1be

View File

@@ -61,7 +61,7 @@ class TriggerPanelEditorCtrl{
// Get zabbix data sources // Get zabbix data sources
var datasources = _.filter(this.datasourceSrv.getMetricSources(), datasource => { var datasources = _.filter(this.datasourceSrv.getMetricSources(), datasource => {
return datasource.meta.id === 'zabbix-datasource'; return datasource.meta.id === 'alexanderzobnin-zabbix-datasource';
}); });
this.datasources = _.map(datasources, 'name'); this.datasources = _.map(datasources, 'name');
@@ -150,7 +150,7 @@ class TriggerPanelEditorCtrl{
this.popoverSrv.show({ this.popoverSrv.show({
element: el, element: el,
placement: 'top', placement: 'top',
templateUrl: 'public/plugins/zabbix-app/panel-triggers/trigger.colorpicker.html', templateUrl: 'public/plugins/alexanderzobnin-zabbix-app/panel-triggers/trigger.colorpicker.html',
scope: popoverScope scope: popoverScope
}); });
} }
@@ -167,7 +167,7 @@ class TriggerPanelEditorCtrl{
this.popoverSrv.show({ this.popoverSrv.show({
element: el, element: el,
placement: 'top', placement: 'top',
templateUrl: 'public/plugins/zabbix-app/panel-triggers/trigger.colorpicker.html', templateUrl: 'public/plugins/alexanderzobnin-zabbix-app/panel-triggers/trigger.colorpicker.html',
scope: popoverScope scope: popoverScope
}); });
} }
@@ -192,7 +192,7 @@ export function triggerPanelEditor() {
return { return {
restrict: 'E', restrict: 'E',
scope: true, scope: true,
templateUrl: 'public/plugins/zabbix-app/panel-triggers/editor.html', templateUrl: 'public/plugins/alexanderzobnin-zabbix-app/panel-triggers/editor.html',
controller: TriggerPanelEditorCtrl, controller: TriggerPanelEditorCtrl,
}; };
} }