From 8369a77365e941d546cf3335effe846b5800090f Mon Sep 17 00:00:00 2001 From: Bogdan Date: Tue, 18 Jul 2023 06:45:46 +0300 Subject: [PATCH] Fixed: Error when selecting different Quality Profile (cherry picked from commit 5e19478266b33905e88b2e769269e44e5dd98e4b) --- .../src/Components/Form/QualityProfileSelectInputConnector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Components/Form/QualityProfileSelectInputConnector.js b/frontend/src/Components/Form/QualityProfileSelectInputConnector.js index 7f305e65c..2304a0d67 100644 --- a/frontend/src/Components/Form/QualityProfileSelectInputConnector.js +++ b/frontend/src/Components/Form/QualityProfileSelectInputConnector.js @@ -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) }); }; //