Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/56a7725e52b7ae9485876e2e1332dbeafcbfc92e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
35 additions and
23 deletions
@ -429,26 +429,31 @@ class MovieDetails extends Component {
null
}
{
year > 0 ?
< span className = { styles . year } >
< Popover
anchor = {
year
}
title = { translate ( 'ReleaseDates' ) }
body = {
< MovieReleaseDates
inCinemas = { inCinemas }
digitalRelease = { digitalRelease }
physicalRelease = { physicalRelease }
/ >
}
position = { tooltipPositions . BOTTOM }
< span className = { styles . year } >
< Popover
anchor = {
year > 0 ? (
year
) : (
< Icon
name = { icons . WARNING }
kind = { kinds . WARNING }
size = { 20 }
/ >
)
}
title = { translate ( 'ReleaseDates' ) }
body = {
< MovieReleaseDates
tmdbId = { tmdbId }
inCinemas = { inCinemas }
digitalRelease = { digitalRelease }
physicalRelease = { physicalRelease }
/ >
< / s p a n > :
null
}
}
position = { tooltipPositions . BOTTOM }
/ >
< / s p a n >
{
runtime ?
@ -1,6 +1,7 @@
import React from 'react' ;
import { useSelector } from 'react-redux' ;
import Icon from 'Components/Icon' ;
import InlineMarkdown from 'Components/Markdown/InlineMarkdown' ;
import { icons } from 'Helpers/Props' ;
import Movie from 'Movie/Movie' ;
import createUISettingsSelector from 'Store/Selectors/createUISettingsSelector' ;
@ -11,10 +12,11 @@ import styles from './MovieReleaseDates.css';
type MovieReleaseDatesProps = Pick <
Movie ,
' inCinemas' | 'digitalRelease' | 'physicalRelease'
' tmdbId' | ' inCinemas' | 'digitalRelease' | 'physicalRelease'
> ;
function MovieReleaseDates ( {
tmdbId ,
inCinemas ,
digitalRelease ,
physicalRelease ,
@ -28,7 +30,12 @@ function MovieReleaseDates({
< div className = { styles . dateIcon } >
< Icon name = { icons . MISSING } / >
< / div >
{ translate ( 'NoMovieReleaseDatesAvailable' ) }
< InlineMarkdown
data = { translate ( 'NoMovieReleaseDatesAvailable' , {
url : ` https://www.themoviedb.org/movie/ ${ tmdbId } ` ,
} ) }
/ >
< / div >
) ;
}
@ -236,7 +236,7 @@ function MovieIndexRow(props: MovieIndexRowProps) {
if ( name === 'year' ) {
return (
< VirtualTableRowCell key = { name } className = { styles [ name ] } >
{ year }
{ year > 0 ? year : null }
< / VirtualTableRowCell >
) ;
}
@ -1049,7 +1049,7 @@
"NoMinimumForAnyRuntime" : "No minimum for any runtime" ,
"NoMoveFilesSelf" : " No, I'll Move the Files Myself" ,
"NoMovieFilesToManage" : "No movie files to manage." ,
"NoMovieReleaseDatesAvailable" : "No release dates available on TMDb for this movie.",
"NoMovieReleaseDatesAvailable" : "No release dates available on [ TMDb]({url}) for this movie.",
"NoMoviesExist" : "No movies found, to get started you'll want to add a new movie or import some existing ones." ,
"NoResultsFound" : "No results found" ,
"NoTagsHaveBeenAddedYet" : "No tags have been added yet" ,