mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: Don't make Editor call on initial page load
This commit is contained in:
@@ -255,10 +255,14 @@ class MovieIndex extends Component {
|
||||
}
|
||||
|
||||
onSaveSelected = (changes) => {
|
||||
this.props.onSaveSelected({
|
||||
movieIds: this.getSelectedIds(),
|
||||
...changes
|
||||
});
|
||||
const selectedMovieIds = this.getSelectedIds();
|
||||
|
||||
if (selectedMovieIds.length > 0) {
|
||||
this.props.onSaveSelected({
|
||||
movieIds: this.getSelectedIds(),
|
||||
...changes
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
onOrganizeMoviePress = () => {
|
||||
|
Reference in New Issue
Block a user