mirror of
https://github.com/Radarr/Radarr
synced 2024-12-31 20:35:37 +00:00
Fixed: Don't make Editor call on initial page load
This commit is contained in:
parent
5982731ef7
commit
b82d636a8c
1 changed files with 8 additions and 4 deletions
|
@ -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 = () => {
|
||||
|
|
Loading…
Reference in a new issue