diff --git a/messages/en-US.json b/messages/en-US.json index 83e8a488d..c7964f8be 100644 --- a/messages/en-US.json +++ b/messages/en-US.json @@ -2556,6 +2556,7 @@ "idpGoogleDescription": "Google OAuth2/OIDC provider", "idpAzureDescription": "Microsoft Azure OAuth2/OIDC provider", "subnet": "Subnet", + "utilitySubnet": "Utility Subnet", "subnetDescription": "The subnet for this organization's network configuration.", "customDomain": "Custom Domain", "authPage": "Authentication Pages", diff --git a/src/components/OrgInfoCard.tsx b/src/components/OrgInfoCard.tsx index f21a42c29..796855609 100644 --- a/src/components/OrgInfoCard.tsx +++ b/src/components/OrgInfoCard.tsx @@ -19,7 +19,7 @@ export default function OrgInfoCard({}: OrgInfoCardProps) { return ( - + {t("name")} {org.org.name} @@ -34,6 +34,14 @@ export default function OrgInfoCard({}: OrgInfoCardProps) { {org.org.subnet || t("none")} + + + {t("utilitySubnet")} + + + {org.org.utilitySubnet || t("none")} + +