mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-03 05:35:29 +00:00
Fixed: Error when selecting different Quality Profile
This commit is contained in:
parent
67234222e3
commit
5e19478266
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ class QualityProfileSelectInputConnector extends Component {
|
|||
// Listeners
|
||||
|
||||
onChange = ({ name, value }) => {
|
||||
this.props.onChange({ name, value: parseInt(value) });
|
||||
this.props.onChange({ name, value: value === 'noChange' ? value : parseInt(value) });
|
||||
};
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue