From 14afab918e2c82557f53dcab929301ee120f6bd8 Mon Sep 17 00:00:00 2001 From: Alex Corey Date: Wed, 22 Jun 2022 11:28:17 -0400 Subject: [PATCH] Creates a verbosity select dropdowns and moves options constant into same file --- awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js | 1 - awx/ui/src/components/AdHocCommands/AdHocDetailsStep.js | 1 - 2 files changed, 2 deletions(-) diff --git a/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js b/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js index 6f10607e54..a3a2039a7b 100644 --- a/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js +++ b/awx/ui/src/components/AdHocCommands/AdHocCommandsWizard.js @@ -78,7 +78,6 @@ const FormikApp = withFormik({ FormikApp.propTypes = { onLaunch: PropTypes.func.isRequired, moduleOptions: PropTypes.arrayOf(PropTypes.array).isRequired, - // verbosityOptions: PropTypes.arrayOf(PropTypes.object).isRequired, onCloseWizard: PropTypes.func.isRequired, credentialTypeId: PropTypes.number.isRequired, }; diff --git a/awx/ui/src/components/AdHocCommands/AdHocDetailsStep.js b/awx/ui/src/components/AdHocCommands/AdHocDetailsStep.js index cd2104b71b..15cf1f82e8 100644 --- a/awx/ui/src/components/AdHocCommands/AdHocDetailsStep.js +++ b/awx/ui/src/components/AdHocCommands/AdHocDetailsStep.js @@ -280,7 +280,6 @@ function AdHocDetailsStep({ moduleOptions }) { AdHocDetailsStep.propTypes = { moduleOptions: PropTypes.arrayOf(PropTypes.array).isRequired, - // verbosityOptions: PropTypes.arrayOf(PropTypes.object).isRequired, }; export default AdHocDetailsStep;