Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/7f8a1cf8497b774f69a0e9dfa24bf96ba930c0a5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
1 deletions
@ -97,6 +97,7 @@ class SpinnerErrorButton extends Component {
render ( ) {
const {
kind ,
isSpinning ,
error ,
children ,
@ -112,7 +113,7 @@ class SpinnerErrorButton extends Component {
const showIcon = wasSuccessful || hasWarning || hasError ;
let iconName = icons . CHECK ;
let iconKind = kind s. SUCCESS ;
let iconKind = kind === kinds . PRIMARY ? kinds . DEFAULT : kind s. SUCCESS ;
if ( hasWarning ) {
iconName = icons . WARNING ;
@ -126,6 +127,7 @@ class SpinnerErrorButton extends Component {
return (
< SpinnerButton
kind = { kind }
isSpinning = { isSpinning }
{ ... otherProps }
>
@ -154,6 +156,7 @@ class SpinnerErrorButton extends Component {
}
SpinnerErrorButton . propTypes = {
kind : PropTypes . oneOf ( kinds . all ) ,
isSpinning : PropTypes . bool . isRequired ,
error : PropTypes . object ,
children : PropTypes . node . isRequired