diff --git a/awx/ui_next/src/components/FormField/FormSubmitError.jsx b/awx/ui_next/src/components/FormField/FormSubmitError.jsx index 65621cf581..c502d5767e 100644 --- a/awx/ui_next/src/components/FormField/FormSubmitError.jsx +++ b/awx/ui_next/src/components/FormField/FormSubmitError.jsx @@ -17,6 +17,8 @@ function FormSubmitError({ error }) { setErrorMessage(errorMessages.__all__); } else if (errorMessages.detail) { setErrorMessage(errorMessages.detail); + } else if (errorMessages.resources_needed_to_start) { + setErrorMessage(errorMessages.resources_needed_to_start); } else { setErrorMessage(null); }