From 4c6191041cd279bfa1d7fcc8b3955a66326acb05 Mon Sep 17 00:00:00 2001 From: Marliana Lara Date: Fri, 6 Mar 2020 11:12:09 -0500 Subject: [PATCH] Fix credential form action button layout --- .../src/screens/Credential/shared/CredentialForm.jsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialForm.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialForm.jsx index c589d92410..73cebca828 100644 --- a/awx/ui_next/src/screens/Credential/shared/CredentialForm.jsx +++ b/awx/ui_next/src/screens/Credential/shared/CredentialForm.jsx @@ -9,7 +9,11 @@ import FormActionGroup from '@components/FormActionGroup/FormActionGroup'; import AnsibleSelect from '@components/AnsibleSelect'; import { required } from '@util/validators'; import OrganizationLookup from '@components/Lookup/OrganizationLookup'; -import { FormColumnLayout, SubFormLayout } from '@components/FormLayout'; +import { + FormColumnLayout, + FormFullWidthLayout, + SubFormLayout, +} from '@components/FormLayout'; import { ManualSubForm, SourceControlSubForm } from './CredentialSubForms'; function CredentialFormFields({ @@ -46,7 +50,7 @@ function CredentialFormFields({ }; return ( - <> + )} - + ); }