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