Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/d72b16531b13e87b17446a65d6f9d4a0df2597f1?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
35 additions and
1 deletions
@ -20,7 +20,12 @@
height : 250px ;
}
. content {
flex : 0 1 100 % ;
}
. title {
display : flex ;
font-weight : 300 ;
font-size : 36px ;
}
@ -30,6 +35,18 @@
color : $ disabledColor ;
}
. tvdbLink {
composes : link from '~Components/Link/Link.css' ;
margin-top : -4px ;
margin-left : auto ;
color : $ textColor ;
}
. tvdbLinkIcon {
margin-left : 10px ;
}
. alreadyExistsIcon {
margin-left : 10px ;
color : # 37bc9b ;
@ -39,6 +39,10 @@ class AddNewSeriesSearchResult extends Component {
this . setState ( { isNewAddSeriesModalOpen : false } ) ;
}
onTVDBLinkPress = ( event ) => {
event . stopPropagation ( ) ;
}
//
// Render
@ -89,7 +93,7 @@ class AddNewSeriesSearchResult extends Component {
/ >
}
< div >
< div className = { styles . content } >
< div className = { styles . title } >
{ title }
@ -111,6 +115,18 @@ class AddNewSeriesSearchResult extends Component {
/ > :
null
}
< Link
className = { styles . tvdbLink }
to = { ` http://www.thetvdb.com/?tab=series&id= ${ tvdbId } ` }
onPress = { this . onTVDBLinkPress }
>
< Icon
className = { styles . tvdbLinkIcon }
name = { icons . EXTERNAL _LINK }
size = { 28 }
/ >
< / L i n k >
< / d i v >
< div >
@ -1,6 +1,7 @@
const sonarrBlue = '#35c5f4' ;
module . exports = {
textColor : '#515253' ,
defaultColor : '#333' ,
disabledColor : '#999' ,
dimColor : '#555' ,