mirror of
https://github.com/ansible/awx.git
synced 2026-02-26 07:26:03 -03:30
run credential type through i18n
This commit is contained in:
@@ -13,7 +13,7 @@ function CredentialChip({ credential, i18n, ...props }) {
|
||||
} else if (credential.kind === 'aws' || credential.kind === 'ssh') {
|
||||
type = credential.kind.toUpperCase();
|
||||
} else {
|
||||
type = toTitleCase(credential.kind);
|
||||
type = i18n._(toTitleCase(credential.kind));
|
||||
}
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user