mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-27 03:03:37 -05:00
Adds identifier to credential type options
This commit is contained in:
@@ -165,7 +165,11 @@ function CredentialFormFields({ i18n, credentialTypes }) {
|
||||
width="100%"
|
||||
>
|
||||
{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}
|
||||
</SelectOption>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user