Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/bbffff78ed2c1a65c8050e16b0307becff996571 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Disable swipe on movie details when a modal is open

pull/9446/head
Bogdan 1 year ago
parent 740f0f1e5f
commit bbffff78ed

@ -180,7 +180,12 @@ class MovieDetails extends Component {
if (
touchStart < 50 ||
this.props.isSidebarVisible ||
this.state.isEventModalOpen
this.state.isOrganizeModalOpen ||
this.state.isEditMovieModalOpen ||
this.state.isDeleteMovieModalOpen ||
this.state.isInteractiveImportModalOpen ||
this.state.isInteractiveSearchModalOpen ||
this.state.isMovieHistoryModalOpen
) {
return;
}

Loading…
Cancel
Save