Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/100b87193db9f5e80b4bb9278bcca59654e692e8?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Background click not closing episode modal when first opened

pull/4435/head
Mark McDowall 4 years ago
parent 5449389ca5
commit 100b87193d

@ -13,7 +13,7 @@ class EpisodeDetailsModal extends Component {
super(props, context);
this.state = {
closeOnBackgroundClick: false
closeOnBackgroundClick: props.selectedTab !== 'search'
};
}
@ -52,6 +52,7 @@ class EpisodeDetailsModal extends Component {
}
EpisodeDetailsModal.propTypes = {
selectedTab: PropTypes.string,
isOpen: PropTypes.bool.isRequired,
onModalClose: PropTypes.func.isRequired
};

Loading…
Cancel
Save