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

25 lines
591 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.vent.trigger(App.Commands.CloseModalCommand);
});
}
});
});