mirror of
https://github.com/grafana/grafana.git
synced 2025-02-09 23:16:16 -06:00
feat(notifications): set default value to false for new notifications
This commit is contained in:
parent
1264a1b3a6
commit
6a723dff37
@ -130,7 +130,11 @@ export class AlertTabCtrl {
|
||||
return;
|
||||
}
|
||||
|
||||
this.alertNotifications.push({name: model.name, iconClass: this.getNotificationIcon(model.type)});
|
||||
this.alertNotifications.push({
|
||||
name: model.name,
|
||||
iconClass: this.getNotificationIcon(model.type),
|
||||
isDefault: false
|
||||
});
|
||||
this.alert.notifications.push({id: model.id});
|
||||
|
||||
// reset plus button
|
||||
|
Loading…
Reference in New Issue
Block a user