Commit 6a723dff by bergquist

feat(notifications): set default value to false for new notifications

parent 1264a1b3
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment