mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 02:19:58 -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:
parent
94344c0214
commit
0812425671
@ -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 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user