Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/3559d35d927a5f81adbfd68ca00ecff2c412271b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
21 additions and
8 deletions
@ -25,11 +25,13 @@ define(
} ,
_onLoadMore : function ( ) {
this . ui . loadMore . hide ( ) ;
this . ui . searchBar . show ( ) ;
this . resultCollectionView . showAll ( ) ;
} ,
var showingAll = this . resultCollectionView . showMore ( ) ;
if ( showingAll ) {
this . ui . loadMore . hide ( ) ;
this . ui . searchBar . show ( ) ;
}
} ,
initialize : function ( options ) {
this . collection = new AddSeriesCollection ( { unmappedFolderModel : this . model } ) ;
@ -11,8 +11,8 @@ define(
itemView : SearchResultView ,
initialize : function ( options ) {
this . isExisting = options . isExisting ;
this . showing = 1 ;
} ,
showAll : function ( ) {
@ -20,11 +20,17 @@ define(
this . render ( ) ;
} ,
showMore : function ( ) {
this . showing += 5 ;
this . render ( ) ;
return this . showing >= this . collection . length ;
} ,
appendHtml : function ( collectionView , itemView , index ) {
if ( ! this . isExisting || this . showingAll || index === 0 ) {
if ( ! this . isExisting || index < this . showing || index === 0 ) {
collectionView . $el . append ( itemView . el ) ;
}
}
} ) ;
} ) ;
@ -10,7 +10,7 @@
.existing-series {
.card();
margin : 2 0px 0px;
margin : 3 0px 0px;
.add-series-search {
width : 970px;
@ -34,6 +34,11 @@ define(
icon : 'icon-book' ,
route : 'logs'
} ,
{
title : 'Check for Update' ,
icon : 'icon-download-alt' ,
command : 'applicationUpdate'
} ,
// {
// title : 'Restart',
// icon : 'icon-repeat',