Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/1222aeaab65d4a7a0551f4935ec4a4a5fda960ae
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
6 additions and
2 deletions
@ -1,7 +1,9 @@
import _ from 'lodash' ;
import PropTypes from 'prop-types' ;
import React , { Component } from 'react' ;
import hasDifferentItems from 'Utilities/Object/hasDifferentItems' ;
import getSelectedIds from 'Utilities/Table/getSelectedIds' ;
import removeOldSelectedState from 'Utilities/Table/removeOldSelectedState' ;
import selectAll from 'Utilities/Table/selectAll' ;
import toggleSelected from 'Utilities/Table/toggleSelected' ;
import { kinds } from 'Helpers/Props' ;
@ -66,8 +68,10 @@ class EpisodeFileEditorModalContent extends Component {
}
componentDidUpdate ( prevProps ) {
if ( prevProps . items !== this . props . items ) {
this . onSelectAllChange ( { value : false } ) ;
if ( hasDifferentItems ( prevProps . items , this . props . items ) ) {
this . setState ( ( state ) => {
return removeOldSelectedState ( state , prevProps . items ) ;
} ) ;
}
}