Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/5bfcc511e8d335e982def071751dec54adcbef0b/UI/AddSeries/RootFolders/CollectionView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/AddSeries/RootFolders/CollectionView.js

17 lines
336 B

'use strict';
12 years ago
define(
[
'marionette',
'AddSeries/RootFolders/ItemView'
], function (Marionette, RootFolderItemView) {
return Marionette.CollectionView.extend({
itemView: RootFolderItemView,
tagName : 'table',
className: 'table table-hover'
});
});