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

20 lines
516 B

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