Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/ac3d4bee3540c090ab501cfb5f3b820fae50ceb2
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
18 deletions
@ -1,24 +1,12 @@
import PropTypes from 'prop-types' ;
import React , { Component } from 'react' ;
import OverlayScroller from 'Components/Scroller/OverlayScroller' ;
import Scroller from 'Components/Scroller/Scroller' ;
import { scrollDirections } from 'Helpers/Props' ;
import { isFirefox , isMobile } from 'Utilities/browser' ;
import { isLocked } from 'Utilities/scrollLock' ;
import styles from './PageContentBody.css' ;
class PageContentBody extends Component {
//
// Lifecycle
constructor ( props , context ) {
super ( props , context ) ;
this . _isMobile = isMobile ( ) ;
this . _isSmallScreenFirefox = isFirefox && window . innerWidth < 768 ;
}
//
// Listeners
@ -42,12 +30,8 @@ class PageContentBody extends Component {
... otherProps
} = this . props ;
const ScrollerComponent = this . _isMobile || this . _isSmallScreenFirefox ?
Scroller :
OverlayScroller ;
return (
< Scroller Component
< Scroller
className = { className }
scrollDirection = { scrollDirections . VERTICAL }
{ ... otherProps }
@ -56,7 +40,7 @@ class PageContentBody extends Component {
< div className = { innerClassName } >
{ children }
< / d i v >
< / S c r o l l e r Co m p o n e n t >
< / S c r o l l e r >
) ;
}
}
@ -1,4 +1,7 @@
@ define-mixin scrollbar {
scrollbar-color : var ( --scrollbarBackgroundColor ) transparent ;
scrollbar-width : thin ;
& :: -webkit-scrollbar {
width : 10px ;
height : 10px ;