Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/b7c569d30dc77171662aa86999e79e7261d96b00/UI/Settings/Indexers/DeleteView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Settings/Indexers/DeleteView.js

20 lines
506 B

'use strict';
define(['app', 'marionette'], function (App, Marionette) {
return Marionette.ItemView.extend({
template: 'Settings/Notifications/DeleteTemplate',
events: {
'click .x-confirm-delete': '_removeIndexer'
},
_removeIndexer: function () {
this.model.destroy({
wait : true,
success: function () {
App.modalRegion.closeModal();
}
});
}
});
});