Fixed: Error when selecting different Quality Profile

pull/5808/head
Bogdan 11 months ago committed by GitHub
parent 67234222e3
commit 5e19478266
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save