Merge branch 'master' into grafana-annotations

This commit is contained in:
Torkel Ödegaard
2016-09-08 11:26:55 +02:00
19 changed files with 457 additions and 473 deletions

View File

@@ -76,6 +76,14 @@ export class AlertTabCtrl {
this.alertNotifications.push(model);
}
});
_.each(this.notifications, item => {
if (item.isDefault) {
item.iconClass = this.getNotificationIcon(item.type);
item.bgColor = "#00678b";
this.alertNotifications.push(item);
}
});
});
}