Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/33cd9f555ef897f91c06844c7a3e347e3ffb3efe
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
37 additions and
1 deletions
@ -85,3 +85,21 @@
display : inline-block ;
margin : 5px -5px 5px 0 ;
}
. mobileCloseButtonContainer {
display : flex ;
justify-content : flex-end ;
height : 40px ;
border-bottom : 1px solid $ borderColor ;
}
. mobileCloseButton {
width : 40px ;
height : 40px ;
text-align : center ;
line-height : 40px ;
& : hover {
color : $ modalCloseButtonHoverColor ;
}
}
@ -518,6 +518,18 @@ class EnhancedSelectInput extends Component {
scrollDirection = { scrollDirections . NONE }
>
< Scroller className = { styles . optionsModalScroller } >
< div className = { styles . mobileCloseButtonContainer } >
< Link
className = { styles . mobileCloseButton }
onPress = { this . onOptionsModalClose }
>
< Icon
name = { icons . CLOSE }
size = { 18 }
/ >
< / L i n k >
< / d i v >
{
values . map ( ( v , index ) => {
const hasParent = v . parentKey !== undefined ;
@ -54,4 +54,8 @@
& : last-child {
border : none ;
}
& : hover {
background-color : unset ;
}
}
@ -12,7 +12,9 @@ class EnhancedSelectInputOption extends Component {
//
// Listeners
onPress = ( ) => {
onPress = ( e ) => {
e . preventDefault ( ) ;
const {
id ,
onSelect