Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/fcd9fb592d0ea8b0abfbe38af8713e771122d299
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
5 deletions
@ -15,7 +15,6 @@ const rows = [
name : 'monitored' ,
showProp : 'showMonitored' ,
valueProp : 'monitored'
} ,
{
name : 'qualityProfileId' ,
@ -73,7 +73,8 @@ class ArtistIndexOverviews extends Component {
sortKey ,
overviewOptions ,
jumpToCharacter ,
scrollTop
scrollTop ,
isSmallScreen
} = this . props ;
const {
@ -84,13 +85,17 @@ class ArtistIndexOverviews extends Component {
if ( prevProps . sortKey !== sortKey ||
prevProps . overviewOptions !== overviewOptions ) {
this . calculateGrid ( ) ;
this . calculateGrid ( this . state . width , isSmallScreen ) ;
}
if ( this . _grid &&
if (
this . _grid &&
( prevState . width !== width ||
prevState . rowHeight !== rowHeight ||
hasDifferentItemsOrOrder ( prevProps . items , items ) ) ) {
hasDifferentItemsOrOrder ( prevProps . items , items ) ||
prevProps . overviewOptions !== overviewOptions
)
) {
// recomputeGridSize also forces Grid to discard its cache of rendered cells
this . _grid . recomputeGridSize ( ) ;
}