mirror of
https://github.com/ansible/awx.git
synced 2026-02-26 15:36:04 -03:30
[ui] Minor tweak to capitalize GPG properly (#12734)
"GPG Public Key", not "Gpg Public Key" Signed-off-by: Rick Elrod <rick@elrod.me>
This commit is contained in:
@@ -9,6 +9,8 @@ function CredentialChip({ credential, ...props }) {
|
||||
let type;
|
||||
if (credential.cloud) {
|
||||
type = t`Cloud`;
|
||||
} else if (credential.kind === 'gpg_public_key') {
|
||||
type = t`GPG Public Key`;
|
||||
} else if (credential.kind === 'aws' || credential.kind === 'ssh') {
|
||||
type = credential.kind.toUpperCase();
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user