mirror of
https://github.com/ansible/awx.git
synced 2026-01-15 03:40:42 -03:30
Adds autoComplete attribute to forms that were missing it (#14080)
This commit is contained in:
parent
7838641215
commit
35a576f2dd
@ -91,7 +91,7 @@ function AdHocCredentialStep({ credentialTypeId }) {
|
||||
{meta.touched && meta.error && (
|
||||
<CredentialErrorAlert variant="danger" isInline title={meta.error} />
|
||||
)}
|
||||
<Form>
|
||||
<Form autoComplete="off">
|
||||
<FormGroup
|
||||
fieldId="credential"
|
||||
label={t`Machine Credential`}
|
||||
|
||||
@ -50,7 +50,7 @@ function AdHocDetailsStep({ moduleOptions }) {
|
||||
: true;
|
||||
|
||||
return (
|
||||
<Form>
|
||||
<Form autoComplete="off">
|
||||
<FormColumnLayout>
|
||||
<FormFullWidthLayout>
|
||||
<FormGroup
|
||||
|
||||
@ -84,7 +84,7 @@ function AdHocExecutionEnvironmentStep({ organizationId }) {
|
||||
}
|
||||
|
||||
return (
|
||||
<Form>
|
||||
<Form autoComplete="off">
|
||||
<FormGroup
|
||||
fieldId="execution_enviroment"
|
||||
label={t`Execution Environment`}
|
||||
|
||||
@ -67,7 +67,7 @@ function MetadataStep() {
|
||||
return (
|
||||
<>
|
||||
{fields.length > 0 && (
|
||||
<Form>
|
||||
<Form autoComplete="off">
|
||||
<FormFullWidthLayout>
|
||||
{fields.map((field) => {
|
||||
if (field.type === 'string') {
|
||||
|
||||
@ -99,7 +99,7 @@ function ExternalTestModal({
|
||||
</Button>,
|
||||
]}
|
||||
>
|
||||
<Form>
|
||||
<Form autoComplete="off">
|
||||
<FormFullWidthLayout>
|
||||
{credentialType.inputs.metadata.map((field) => {
|
||||
const isRequired = credentialType.inputs?.required.includes(
|
||||
|
||||
@ -122,7 +122,7 @@ function ConstructedInventoryHint() {
|
||||
<br />
|
||||
<Panel>
|
||||
<CardBody>
|
||||
<Form>
|
||||
<Form autoComplete="off">
|
||||
<b>{t`Constructed inventory examples`}</b>
|
||||
<LimitToIntersectionExample />
|
||||
<FilterOnNestedGroupExample />
|
||||
|
||||
@ -164,7 +164,7 @@ function NodeTypeStep({ isIdentifierRequired }) {
|
||||
onUpdateNodeResource={nodeResourceHelpers.setValue}
|
||||
/>
|
||||
)}
|
||||
<Form css="margin-top: 20px;">
|
||||
<Form autoComplete="off" css="margin-top: 20px;">
|
||||
<FormColumnLayout>
|
||||
<FormFullWidthLayout>
|
||||
{nodeTypeField.value === 'workflow_approval_template' && (
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user