Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/98e5442f2439d44e12543c6e0942e7ea92f3e26d?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
19 additions and
1 deletions
@ -2,3 +2,7 @@
margin-right : 5px ;
color : $ themeRed ;
}
. rating {
margin-right : 15px ;
}
@ -6,7 +6,7 @@ import styles from './HeartRating.css';
function HeartRating ( { rating , iconSize } ) {
return (
< span >
< span className = { styles . rating } >
< Icon
className = { styles . heart }
name = { icons . HEART }
@ -57,6 +57,11 @@ function getExpandedState(newState) {
} ;
}
function getDateYear ( date ) {
const dateDate = new Date ( date ) ;
return dateDate . getFullYear ( ) ;
}
class SeriesDetails extends Component {
//
@ -192,6 +197,8 @@ class SeriesDetails extends Component {
seasons ,
alternateTitles ,
tags ,
year ,
previousAiring ,
isSaving ,
isRefreshing ,
isSearching ,
@ -229,6 +236,7 @@ class SeriesDetails extends Component {
} = this . state ;
const statusDetails = getSeriesStatusDetails ( status ) ;
const runningYears = statusDetails . title === 'Ended' ? ` ${ year } - ${ getDateYear ( previousAiring ) } ` : ` ${ year } - ` ;
let episodeFilesCountMessage = 'No episode files' ;
@ -414,6 +422,10 @@ class SeriesDetails extends Component {
rating = { ratings . value }
iconSize = { 20 }
/ >
< span >
{ runningYears }
< / s p a n >
< / d i v >
< / d i v >
@ -706,6 +718,8 @@ SeriesDetails.propTypes = {
seasons : PropTypes . arrayOf ( PropTypes . object ) . isRequired ,
alternateTitles : PropTypes . arrayOf ( PropTypes . object ) . isRequired ,
tags : PropTypes . arrayOf ( PropTypes . number ) . isRequired ,
year : PropTypes . number . isRequired ,
previousAiring : PropTypes . string ,
isSaving : PropTypes . bool . isRequired ,
saveError : PropTypes . object ,
isRefreshing : PropTypes . bool . isRequired ,