Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/7a5e2c248cf27badc4865ab83196e03c0da982b4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
15 deletions
@ -1,6 +1,5 @@
import PropTypes from 'prop-types' ;
import React , { Component } from 'react' ;
import ReactDOM from 'react-dom' ;
import Alert from 'Components/Alert' ;
import PathInput from 'Components/Form/PathInput' ;
import Button from 'Components/Link/Button' ;
@ -39,7 +38,7 @@ class FileBrowserModalContent extends Component {
constructor ( props , context ) {
super ( props , context ) ;
this . _scroller Node = null ;
this . _scroller Ref = React . createRef ( ) ;
this . state = {
isFileBrowserModalOpen : false ,
@ -57,21 +56,10 @@ class FileBrowserModalContent extends Component {
currentPath !== prevState . currentPath
) {
this . setState ( { currentPath } ) ;
this . _scroller Node . scrollTop = 0 ;
this . _scroller Ref. current . scrollTop = 0 ;
}
}
//
// Control
setScrollerRef = ( ref ) => {
if ( ref ) {
this . _scrollerNode = ReactDOM . findDOMNode ( ref ) ;
} else {
this . _scrollerNode = null ;
}
} ;
//
// Listeners
@ -143,7 +131,7 @@ class FileBrowserModalContent extends Component {
/ >
< Scroller
ref = { this . setS crollerRef}
ref = { this . _ scrollerRef}
className = { styles . scroller }
scrollDirection = { scrollDirections . BOTH }
>