diff --git a/src/Explorer/Controls/Settings/SettingsSubComponents/ThroughputInputComponents/ThroughputInputAutoPilotV3Component.tsx b/src/Explorer/Controls/Settings/SettingsSubComponents/ThroughputInputComponents/ThroughputInputAutoPilotV3Component.tsx index 7ba21f88b..c8eadd075 100644 --- a/src/Explorer/Controls/Settings/SettingsSubComponents/ThroughputInputComponents/ThroughputInputAutoPilotV3Component.tsx +++ b/src/Explorer/Controls/Settings/SettingsSubComponents/ThroughputInputComponents/ThroughputInputAutoPilotV3Component.tsx @@ -133,8 +133,10 @@ export class ThroughputInputAutoPilotV3Component extends React.Component< if (isDirty(this.props.maxAutoPilotThroughput, this.props.maxAutoPilotThroughputBaseline)) { isDiscardable = true; if ( - this.props.maxAutoPilotThroughput <= this.props.softAllowedMaximumThroughput && - AutoPilotUtils.isValidAutoPilotThroughput(this.props.maxAutoPilotThroughput) + this.props.softAllowedMaximumThroughput + ? this.props.maxAutoPilotThroughput <= this.props.softAllowedMaximumThroughput && + AutoPilotUtils.isValidAutoPilotThroughput(this.props.maxAutoPilotThroughput) + : AutoPilotUtils.isValidAutoPilotThroughput(this.props.maxAutoPilotThroughput) ) { isSaveable = true; }