mirror of
https://github.com/ansible/awx.git
synced 2026-05-14 21:07:39 -02:30
Adds identifier to credential type options
This commit is contained in:
@@ -165,7 +165,11 @@ function CredentialFormFields({ i18n, credentialTypes }) {
|
|||||||
width="100%"
|
width="100%"
|
||||||
>
|
>
|
||||||
{credentialTypeOptions.map(credType => (
|
{credentialTypeOptions.map(credType => (
|
||||||
<SelectOption key={credType.value} value={credType.value}>
|
<SelectOption
|
||||||
|
key={credType.value}
|
||||||
|
value={credType.value}
|
||||||
|
dataCy={`${credType.id}-credential-type-select-option`}
|
||||||
|
>
|
||||||
{credType.label}
|
{credType.label}
|
||||||
</SelectOption>
|
</SelectOption>
|
||||||
))}
|
))}
|
||||||
|
|||||||
Reference in New Issue
Block a user