mirror of https://github.com/Radarr/Radarr
Fixed: QualitySelect defaults to Profile instead of NoChange on Editor
This commit is contained in:
parent
d7e0625be7
commit
bd5bb2a63c
|
@ -55,7 +55,7 @@ class QualityProfileSelectInputConnector extends Component {
|
|||
values
|
||||
} = this.props;
|
||||
|
||||
if (!value || !_.some(values, (option) => parseInt(option.key) === value)) {
|
||||
if (!value || !values.some((v) => v.key === value) ) {
|
||||
const firstValue = _.find(values, (option) => !isNaN(parseInt(option.key)));
|
||||
|
||||
if (firstValue) {
|
||||
|
|
|
@ -255,14 +255,10 @@ class MovieIndex extends Component {
|
|||
}
|
||||
|
||||
onSaveSelected = (changes) => {
|
||||
const selectedMovieIds = this.getSelectedIds();
|
||||
|
||||
if (selectedMovieIds.length > 0) {
|
||||
this.props.onSaveSelected({
|
||||
movieIds: this.getSelectedIds(),
|
||||
...changes
|
||||
});
|
||||
}
|
||||
this.props.onSaveSelected({
|
||||
movieIds: this.getSelectedIds(),
|
||||
...changes
|
||||
});
|
||||
}
|
||||
|
||||
onOrganizeMoviePress = () => {
|
||||
|
|
Loading…
Reference in New Issue