Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/blame/commit/1a0010e8e49e48b5d6e7ea2bb85ab71b3bf6f8f3/UI/AddSeries/RootFolders/CollectionView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/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'
});
});