Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/147bb5476bbfe589f2d04206d7dc1e00017ee829/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
526 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.vent.trigger(App.Commands.CloseModalCommand);
}
});
}
});
});