diff --git a/UI/Settings/Indexers/CollectionView.js b/UI/Settings/Indexers/CollectionView.js index 063a78316..df09ff132 100644 --- a/UI/Settings/Indexers/CollectionView.js +++ b/UI/Settings/Indexers/CollectionView.js @@ -22,7 +22,6 @@ define(['app', collectionView.ui.addCard.parent('li').before(itemView.el); }, - _openSchemaModal: function () { var self = this; //TODO: Is there a better way to deal with changing URLs? @@ -32,8 +31,12 @@ define(['app', success: function (collection) { collection.url = '/api/indexer'; var model = _.first(collection.models); - model.set('id', undefined); - model.set('name', ''); + + model.set({ + id: undefined, + name: '', + enable: true + }); var view = new IndexerEditView({ model: model, indexerCollection: self.collection}); App.modalRegion.show(view); diff --git a/UI/Settings/Notifications/AddItemView.js b/UI/Settings/Notifications/AddItemView.js index dea64786c..e6b320b7d 100644 --- a/UI/Settings/Notifications/AddItemView.js +++ b/UI/Settings/Notifications/AddItemView.js @@ -25,7 +25,9 @@ define([ this.model.set({ id: undefined, - name: this.model.get('implementationName') + name: this.model.get('implementationName'), + onGrab: true, + onDownload: true }); var editView = new EditView({ model: this.model, notificationCollection: this.notificationCollection });