Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/5e3a0e2cd735df383b60c8d42441fd8ad62c514c?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
10 additions and
2 deletions
@ -1,6 +1,6 @@
import _ from 'lodash' ;
import PropTypes from 'prop-types' ;
import React , { Pure Component } from 'react' ;
import React , { Component } from 'react' ;
import dimensions from 'Styles/Variables/dimensions' ;
import Measure from 'Components/Measure' ;
import PageJumpBarItem from './PageJumpBarItem' ;
@ -8,7 +8,7 @@ import styles from './PageJumpBar.css';
const ITEM _HEIGHT = parseInt ( dimensions . jumpBarItemHeight ) ;
class PageJumpBar extends Pure Component {
class PageJumpBar extends Component {
//
// Lifecycle
@ -26,6 +26,14 @@ class PageJumpBar extends PureComponent {
this . computeVisibleItems ( ) ;
}
shouldComponentUpdate ( nextProps , nextState ) {
return (
nextProps . items !== this . props . items ||
nextState . height !== this . state . height ||
nextState . visibleItems !== this . state . visibleItems
) ;
}
componentDidUpdate ( prevProps , prevState ) {
if (
prevProps . items !== this . props . items ||