Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/151bf5b49f8c7a051cde6b589a5695ecfef44eb8
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
20 additions and
6 deletions
@ -1,10 +1,15 @@
. searchResult {
display: flex ;
position: relative ;
margin : 20px 0 ;
padding : 20px ;
width : 100 % ;
background-color : $ white ;
color : inherit ;
}
. underlay {
@ add-mixin cover ;
background-color : $ white ;
transition : background 500ms ;
& : hover {
@ -14,6 +19,13 @@
}
}
. overlay {
@ add-mixin linkOverlay ;
position : relative ;
display : flex ;
}
. poster {
flex : 0 0 170px ;
margin-right : 20px ;
@ -70,11 +70,13 @@ class AddNewMovieSearchResult extends Component {
const linkProps = isExistingMovie ? { to : ` /movie/ ${ titleSlug } ` } : { onPress : this . onPress } ;
return (
< div >
< div className = { styles . searchResult } >
< Link
className = { styles . searchResult }
className = { styles . underlay }
{ ... linkProps }
>
/ >
< div className = { styles . overlay } >
{
isSmallScreen ?
null :
@ -158,7 +160,7 @@ class AddNewMovieSearchResult extends Component {
{ overview }
< / d i v >
< / d i v >
< / Li n k >
< / di v >
< AddNewMovieModal
isOpen = { isNewAddMovieModalOpen && ! isExistingMovie }