Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/src/commit/6a10382e7beb0287d935c85a6415283d7843d21e/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';
define(
[
'marionette',
'AddSeries/RootFolders/ItemView'
], function (Marionette, RootFolderItemView) {
return Marionette.CollectionView.extend({
itemView: RootFolderItemView,
tagName : 'table',
className: 'table table-hover'
});
});