Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/1dea451ace7d4c5647e644b42514a96a45049e60
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
18 additions and
12 deletions
@ -1,8 +1,11 @@
'use strict' ;
define ( [ 'backbone' , 'System/Info/DiskSpace/DiskSpaceModel' ] ,
define ( [ 'backbone' ,
'System/Info/DiskSpace/DiskSpaceModel' ] ,
function ( Backbone , DiskSpaceModel ) {
return Backbone . Collection . extend ( {
url : window . NzbDrone . ApiRoot + '/diskspace' ,
model : DiskSpaceModel
url : window . NzbDrone . ApiRoot + '/diskspace' ,
model : DiskSpaceModel
} ) ;
} ) ;
@ -18,19 +18,22 @@ define([
columns :
[
{
name : 'path' ,
label : 'Location' ,
cell : DiskSpacePathCell
name : 'path' ,
label : 'Location' ,
cell : DiskSpacePathCell ,
sortable : false
} ,
{
name : 'freeSpace' ,
label : 'Free Space' ,
cell : FileSizeCell
name : 'freeSpace' ,
label : 'Free Space' ,
cell : FileSizeCell ,
sortable : false
} ,
{
name : 'totalSpace' ,
label : 'Total Space' ,
cell : FileSizeCell
name : 'totalSpace' ,
label : 'Total Space' ,
cell : FileSizeCell ,
sortable : false
}
] ,