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/64181ebdffda9fc64f7864fe0467832afbec7115/UI/Episode/Search/ManualLayout.js
You should set ROOT_URL correctly, otherwise the web may not work correctly.
'use strict' ;
define (
[
'marionette' ,
'backgrid' ,
'Cells/FileSizeCell' ,
'Cells/QualityCell' ,
'Cells/ApprovalStatusCell' ,
'Release/DownloadReportCell'
] , function ( Marionette , Backgrid , FileSizeCell , QualityCell , ApprovalStatusCell , DownloadReportCell ) {
return Marionette . Layout . extend ( {
template : 'Episode/Search/ManualLayoutTemplate' ,
regions : {
grid : '#episode-release-grid'
} ,
columns :
[
{
name : 'age' ,
label : 'Age' ,
sortable : true ,
cell : Backgrid . IntegerCell
} ,
{
name : 'title' ,
label : 'Title' ,
sortable : true ,
cell : Backgrid . StringCell . extend ( { className : 'nzb-title-cell' } )
} ,
{
name : 'indexer' ,
label : 'Indexer' ,
sortable : true ,
cell : Backgrid . StringCell
} ,
{
name : 'size' ,
label : 'Size' ,
sortable : true ,
cell : FileSizeCell
} ,
{
name : 'quality' ,
label : 'Quality' ,
sortable : true ,
cell : QualityCell
} ,
{
name : 'rejections' ,
label : '' ,
cell : ApprovalStatusCell
} ,
{
name : 'download' ,
label : '' ,
cell : DownloadReportCell
}
] ,
onShow : function ( ) {
if ( ! this . isClosed ) {
this . grid . show ( new Backgrid . Grid ( {
row : Backgrid . Row ,
columns : this . columns ,
collection : this . collection ,
className : 'table table-hover'
} ) ) ;
}
}
} ) ;
} ) ;