From 0a4a9f96c2092b651dccccf33c85a023d12099db Mon Sep 17 00:00:00 2001 From: mabashian Date: Fri, 12 Aug 2022 14:03:36 -0400 Subject: [PATCH] Explicitly set value for verbosity to 0 as the default value which corresponds to 0 (Normal) --- awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js b/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js index 107c8d2d07..94e4ff6e79 100644 --- a/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js +++ b/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js @@ -2,8 +2,6 @@ import React from 'react'; import { t } from '@lingui/macro'; import { withFormik, useFormikContext } from 'formik'; import PropTypes from 'prop-types'; - -import { VERBOSITY } from 'components/VerbositySelectField'; import Wizard from '../Wizard'; import useAdHocLaunchSteps from './useAdHocLaunchSteps'; @@ -62,7 +60,7 @@ const FormikApp = withFormik({ limit: adHocItemStrings || 'all', credentials: [], module_args: '', - verbosity: VERBOSITY()[0].value, + verbosity: 0, forks: 0, diff_mode: false, become_enabled: '',