Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/eecd4e4b7d21c5fa70181fd87f6edd5d624924ff
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
24 additions and
20 deletions
@ -4,6 +4,11 @@
margin-right : auto ;
}
. rightButtons {
justify-content : flex-end ;
margin-right : auto ;
}
. addSpecification {
composes : customFormat from '~./CustomFormat.css' ;
@ -198,26 +198,25 @@ class EditCustomFormatModalContent extends Component {
< / d i v >
< / M o d a l B o d y >
< ModalFooter >
{
id &&
< Button
className = { styles . deleteButton }
kind = { kinds . DANGER }
onPress = { onDeleteCustomFormatPress }
>
{ translate ( 'Delete' ) }
< / B u t t o n >
}
{
! id &&
< Button
className = { styles . deleteButton }
onPress = { this . onImportPress }
>
{ translate ( 'Import' ) }
< / B u t t o n >
}
< div className = { styles . rightButtons } >
{
id &&
< Button
className = { styles . deleteButton }
kind = { kinds . DANGER }
onPress = { onDeleteCustomFormatPress }
>
{ translate ( 'Delete' ) }
< / B u t t o n >
}
< Button
className = { styles . deleteButton }
onPress = { this . onImportPress }
>
{ translate ( 'Import' ) }
< / B u t t o n >
< / d i v >
< Button
onPress = { onModalClose }