Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/336cb4a2bc5db840f570b9b844f2247e92c7bb43
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
13 additions and
9 deletions
@ -3,6 +3,7 @@ import PropTypes from 'prop-types';
import React , { Component } from 'react' ;
import { Tab , TabList , TabPanel , Tabs } from 'react-tabs' ;
import TextTruncate from 'react-text-truncate' ;
import Alert from 'Components/Alert' ;
import Icon from 'Components/Icon' ;
import ImdbRating from 'Components/ImdbRating' ;
import InfoLabel from 'Components/InfoLabel' ;
@ -634,24 +635,27 @@ class MovieDetails extends Component {
< div className = { styles . contentContainer } >
{
! isFetching && movieFilesError &&
< div >
! isFetching && movieFilesError ?
< Alert kind = { kinds . DANGER } >
{ translate ( 'LoadingMovieFilesFailed' ) }
< / d i v >
< / A l e r t > :
null
}
{
! isFetching && movieCreditsError &&
< div >
! isFetching && movieCreditsError ?
< Alert kind = { kinds . DANGER } >
{ translate ( 'LoadingMovieCreditsFailed' ) }
< / d i v >
< / A l e r t > :
null
}
{
! isFetching && extraFilesError &&
< div >
! isFetching && extraFilesError ?
< Alert kind = { kinds . DANGER } >
{ translate ( 'LoadingMovieExtraFilesFailed' ) }
< / d i v >
< / A l e r t > :
null
}
< Tabs selectedIndex = { selectedTabIndex } onSelect = { this . onTabSelect } >