From db4a964e6426c36a10a419cd155a4b899d599384 Mon Sep 17 00:00:00 2001 From: Keith Grant Date: Mon, 15 Jul 2019 14:41:58 -0700 Subject: [PATCH] run credential type through i18n --- awx/ui_next/src/components/Chip/CredentialChip.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui_next/src/components/Chip/CredentialChip.jsx b/awx/ui_next/src/components/Chip/CredentialChip.jsx index 1e806a0c01..4919f7b9da 100644 --- a/awx/ui_next/src/components/Chip/CredentialChip.jsx +++ b/awx/ui_next/src/components/Chip/CredentialChip.jsx @@ -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 (