diff --git a/UI/Settings/Notifications/AddItemView.js b/UI/Settings/Notifications/AddItemView.js index f58ff758a..dea64786c 100644 --- a/UI/Settings/Notifications/AddItemView.js +++ b/UI/Settings/Notifications/AddItemView.js @@ -23,7 +23,11 @@ define([ return; } - this.model.set('id', undefined); + this.model.set({ + id: undefined, + name: this.model.get('implementationName') + }); + var editView = new EditView({ model: this.model, notificationCollection: this.notificationCollection }); App.modalRegion.show(editView); }