mirror of
https://github.com/ansible/awx.git
synced 2026-05-07 01:17:37 -02:30
Explicitly set value for verbosity to 0 as the default value which corresponds to 0 (Normal)
This commit is contained in:
@@ -2,8 +2,6 @@ import React from 'react';
|
|||||||
import { t } from '@lingui/macro';
|
import { t } from '@lingui/macro';
|
||||||
import { withFormik, useFormikContext } from 'formik';
|
import { withFormik, useFormikContext } from 'formik';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
|
||||||
import { VERBOSITY } from 'components/VerbositySelectField';
|
|
||||||
import Wizard from '../Wizard';
|
import Wizard from '../Wizard';
|
||||||
import useAdHocLaunchSteps from './useAdHocLaunchSteps';
|
import useAdHocLaunchSteps from './useAdHocLaunchSteps';
|
||||||
|
|
||||||
@@ -62,7 +60,7 @@ const FormikApp = withFormik({
|
|||||||
limit: adHocItemStrings || 'all',
|
limit: adHocItemStrings || 'all',
|
||||||
credentials: [],
|
credentials: [],
|
||||||
module_args: '',
|
module_args: '',
|
||||||
verbosity: VERBOSITY()[0].value,
|
verbosity: 0,
|
||||||
forks: 0,
|
forks: 0,
|
||||||
diff_mode: false,
|
diff_mode: false,
|
||||||
become_enabled: '',
|
become_enabled: '',
|
||||||
|
|||||||
Reference in New Issue
Block a user