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/9ea588dd911bb2e37532b1f5ae2115b23dc9714e/UI/Settings/Notifications/CollectionView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Settings/Notifications/CollectionView.js

22 lines
600 B

'use strict';
define([
'app',
'marionette',
'Settings/Notifications/ItemView',
'Settings/Notifications/SchemaModal'
], function (App, Marionette, NotificationItemView, SchemaModal) {
return Marionette.CompositeView.extend({
itemView : NotificationItemView,
itemViewContainer: '.notifications',
template : 'Settings/Notifications/CollectionTemplate',
events: {
'click .x-add': '_openSchemaModal'
},
_openSchemaModal: function () {
SchemaModal.open(this.collection);
}
});
});