diff --git a/awx/ui/src/components/LaunchPrompt/steps/useSurveyStep.js b/awx/ui/src/components/LaunchPrompt/steps/useSurveyStep.js index 19484747fa..a19bc46a57 100644 --- a/awx/ui/src/components/LaunchPrompt/steps/useSurveyStep.js +++ b/awx/ui/src/components/LaunchPrompt/steps/useSurveyStep.js @@ -128,9 +128,9 @@ function checkForError(launchConfig, surveyConfig, values) { hasError = true; } } - if (isNumeric && (value || value === 0)) { + if (isNumeric) { if ( - (value < question.min || value > question.max) && + (value < question.min || value > question.max || value === '') && question.required ) { hasError = true;