diff --git a/public/app/features/alerting/alert_tab_ctrl.ts b/public/app/features/alerting/alert_tab_ctrl.ts index f3cc998deaa..b372520507d 100644 --- a/public/app/features/alerting/alert_tab_ctrl.ts +++ b/public/app/features/alerting/alert_tab_ctrl.ts @@ -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); + } + }); }); } diff --git a/public/app/features/alerting/partials/alert_tab.html b/public/app/features/alerting/partials/alert_tab.html index 770e3a2cb05..fbbcf810ee6 100644 --- a/public/app/features/alerting/partials/alert_tab.html +++ b/public/app/features/alerting/partials/alert_tab.html @@ -6,7 +6,7 @@