1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-31 03:41:24 +00:00

Fixed: Don't make Editor call on initial page load

This commit is contained in:
Qstick 2020-07-04 22:31:13 -04:00
parent 5982731ef7
commit b82d636a8c

View file

@ -255,11 +255,15 @@ class MovieIndex extends Component {
} }
onSaveSelected = (changes) => { onSaveSelected = (changes) => {
const selectedMovieIds = this.getSelectedIds();
if (selectedMovieIds.length > 0) {
this.props.onSaveSelected({ this.props.onSaveSelected({
movieIds: this.getSelectedIds(), movieIds: this.getSelectedIds(),
...changes ...changes
}); });
} }
}
onOrganizeMoviePress = () => { onOrganizeMoviePress = () => {
this.setState({ isOrganizingMovieModalOpen: true }); this.setState({ isOrganizingMovieModalOpen: true });