Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/2c492fdb72eef37c8c70d924de11d7cf0b874fa4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
14 additions and
1 deletions
@ -13,6 +13,7 @@ class OverlayScroller extends Component {
super ( props , context ) ;
this . _scroller = null ;
this . _isScrolling = false ;
}
componentDidUpdate ( prevProps ) {
@ -20,7 +21,8 @@ class OverlayScroller extends Component {
scrollTop
} = this . props ;
if ( scrollTop != null && scrollTop !== prevProps . scrollTop ) {
if ( ! this . _isScrolling && scrollTop != null && scrollTop !== prevProps . scrollTop ) {
debugger ;
this . _scroller . scrollTop ( scrollTop ) ;
}
}
@ -53,12 +55,21 @@ class OverlayScroller extends Component {
//
// Listers
onScrollStart = ( ) => {
this . _isScrolling = true ;
}
onScrollStop = ( ) => {
this . _isScrolling = false ;
}
onScroll = ( event ) => {
const {
scrollTop ,
scrollLeft
} = event . currentTarget ;
this . _isScrolling = true ;
const onScroll = this . props . onScroll ;
if ( onScroll ) {
@ -84,6 +95,8 @@ class OverlayScroller extends Component {
renderThumbHorizontal = { this . _renderThumb }
renderThumbVertical = { this . _renderThumb }
renderView = { this . _renderView }
onScrollStart = { this . onScrollStart }
onScrollStop = { this . onScrollStop }
onScroll = { this . onScroll }
>
{ children }