Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/1ef168370e08251c95c35e446efb652c6ba67de6
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
9 additions and
5 deletions
@ -39,9 +39,6 @@ define(
SeriesCollection . fetch ( ) ;
QualityProfileCollection . fetch ( ) ;
RootFolderCollection . fetch ( ) ;
this . rootFolderLayout = new RootFolderLayout ( ) ;
this . rootFolderLayout . on ( 'folderSelected' , this . _folderSelected , this ) ;
} ,
onShow : function ( ) {
@ -55,6 +52,8 @@ define(
} ,
_importSeries : function ( ) {
this . rootFolderLayout = new RootFolderLayout ( ) ;
this . rootFolderLayout . on ( 'folderSelected' , this . _folderSelected , this ) ;
App . modalRegion . show ( this . rootFolderLayout ) ;
} ,
@ -11,7 +11,7 @@
{{#if items}}
< h4 > Recent Folders< / h4 >
{{/if}}
< div id = "current-dirs" / >
< div id = "current-dirs" class = "root-folders-list" > < / div >
< / div >
< div class = "modal-footer" >
< button class = "btn" data-dismiss = "modal" > close< / button >
@ -118,5 +118,10 @@ li.add-new:hover {
}
.root-folders-modal {
overflow: visible;
overflow: hidden;
.root-folders-list {
overflow: auto;
max-height: 300px;
}
}