Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/b1239520106c33f9966f8b8414d23b4c1a5053a2
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
23 additions and
9 deletions
@ -75,13 +75,23 @@ class Queue extends Component {
return ;
}
const nextState = { } ;
if ( prevProps . items !== items ) {
nextState . items = items ;
}
const selectedIds = this . getSelectedIds ( ) ;
const isPendingSelected = _ . some ( this . props . items , ( item ) => {
return selectedIds . indexOf ( item . id ) > - 1 && item . status === 'delay' ;
} ) ;
if ( isPendingSelected !== this . state . isPendingSelected ) {
this . setState ( { isPendingSelected } ) ;
nextState . isPendingSelected = isPendingSelected ;
}
if ( ! _ . isEmpty ( nextState ) ) {
this . setState ( nextState ) ;
}
}
@ -216,26 +226,29 @@ class Queue extends Component {
< PageContentBody >
{
isRefreshing && ! isAllPopulated &&
< LoadingIndicator / >
isRefreshing && ! isAllPopulated ?
< LoadingIndicator / > :
null
}
{
! isRefreshing && hasError &&
! isRefreshing && hasError ?
< div >
{ translate ( 'FailedToLoadQueue' ) }
< / d i v >
< / d i v > :
null
}
{
isAllPopulated && ! hasError && ! items . length &&
isAllPopulated && ! hasError && ! items . length ?
< div >
{ translate ( 'QueueIsEmpty' ) }
< / d i v >
< / d i v > :
null
}
{
isAllPopulated && ! hasError && ! ! items . length &&
isAllPopulated && ! hasError && ! ! items . length ?
< div >
< Table
columns = { columns }
@ -270,7 +283,8 @@ class Queue extends Component {
isFetching = { isRefreshing }
{ ... otherProps }
/ >
< / d i v >
< / d i v > :
null
}
< / P a g e C o n t e n t B o d y >