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/b7c569d30dc77171662aa86999e79e7261d96b00/UI/Settings/Quality/Profile/DeleteView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Settings/Quality/Profile/DeleteView.js

25 lines
571 B

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