Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/07b69e665dc6ec651a73683f015ef4c2b5c93094
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
11 additions and
6 deletions
@ -39,12 +39,12 @@ const columns = [
} ,
{
name : 'imdbId' ,
label : ( ) = > translate ( 'I md bId') ,
label : ( ) = > translate ( 'I MD bId') ,
isVisible : true ,
} ,
{
name : 'tmdbId' ,
label : ( ) = > translate ( 'T mdb Id') ,
label : ( ) = > translate ( 'T MDB Id') ,
isVisible : true ,
} ,
] ;
@ -28,7 +28,11 @@ class SelectMovieRow extends Component {
< / V i r t u a l T a b l e R o w C e l l >
< VirtualTableRowCell className = { styles . imdbId } >
< Label > { this . props . imdbId } < / L a b e l >
{
this . props . imdbId ?
< Label > { this . props . imdbId } < / L a b e l > :
null
}
< / V i r t u a l T a b l e R o w C e l l >
< VirtualTableRowCell className = { styles . tmdbId } >
@ -43,7 +47,7 @@ SelectMovieRow.propTypes = {
id : PropTypes . number . isRequired ,
title : PropTypes . string . isRequired ,
tmdbId : PropTypes . number . isRequired ,
imdbId : PropTypes . string .isRequired ,
imdbId : PropTypes . string ,
year : PropTypes . number . isRequired ,
onMovieSelect : PropTypes . func . isRequired
} ;
@ -72,11 +72,11 @@ function ParseResult(props: ParseResultProps) {
/ >
{ tmdbId ? (
< ParseResultItem title = { translate ( 'T mdb Id') } data = { tmdbId } / >
< ParseResultItem title = { translate ( 'T MDB Id') } data = { tmdbId } / >
) : null }
{ imdbId ? (
< ParseResultItem title = { translate ( 'I md bId') } data = { imdbId } / >
< ParseResultItem title = { translate ( 'I MD bId') } data = { imdbId } / >
) : null }
< / FieldSet >
@ -441,6 +441,7 @@
"ICalFeed" : "iCal Feed" ,
"ICalHttpUrlHelpText" : "Copy this URL to your client(s) or click to subscribe if your browser supports webcal" ,
"IMDb" : "IMDb" ,
"IMDbId" : "IMDb Id" ,
"IconForCutoffUnmet" : "Icon for Cutoff Unmet" ,
"IgnoreDeletedMovies" : "Unmonitor Deleted Movies" ,
"Ignored" : "Ignored" ,