Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/1978a726bb800a6c48cebd51fdfdcd10e9f76211
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
9 additions and
4 deletions
@ -17,7 +17,7 @@ class DescriptionListItem extends Component {
} = this . props ;
return (
< span >
< div >
< DescriptionListItemTitle
className = { titleClassName }
>
@ -29,7 +29,7 @@ class DescriptionListItem extends Component {
>
{ data }
< / D e s c r i p t i o n L i s t I t e m D e s c r i p t i o n >
< / sp a n >
< / di v >
) ;
}
}
@ -23,6 +23,7 @@ function IconButton(props) {
className ,
isDisabled && styles . isDisabled
) }
aria - label = "Table Options Button"
isDisabled = { isDisabled }
{ ... otherProps }
>
@ -61,6 +61,7 @@ class PageHeader extends Component {
< img
className = { styles . logo }
src = { ` ${ window . Readarr . urlBase } /Content/Images/logo.svg ` }
alt = "Readarr Logo"
/ >
< / L i n k >
< / d i v >
@ -79,6 +80,7 @@ class PageHeader extends Component {
< IconButton
className = { styles . donate }
name = { icons . HEART }
aria - label = "Donate"
to = "https://opencollective.com/readarr"
size = { 14 }
/ >
@ -20,7 +20,7 @@ function PageHeaderActionsMenu(props) {
return (
< div >
< Menu alignMenu = { align . RIGHT } >
< MenuButton className = { styles . menuButton } >
< MenuButton className = { styles . menuButton } aria - label = "Menu Button" >
< Icon
name = { icons . INTERACTIVE }
/ >
@ -56,7 +56,9 @@ function ProgressBar(props) {
styles [ kind ] ,
enableColorImpairedMode && 'colorImpaired'
) }
aria - valuenow = { progress }
role = "meter"
aria - label = { ` Progress Bar at ${ progress . toFixed ( 0 ) } % ` }
aria - valuenow = { progress . toFixed ( 0 ) }
aria - valuemin = "0"
aria - valuemax = "100"
style = { { width : progressPercent } }