From 053ff1e7997746bc77405cb2cfeb9012f84a5899 Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 25 Jun 2026 15:39:04 -0400 Subject: [PATCH] Add utility subnet --- messages/en-US.json | 1 + src/components/OrgInfoCard.tsx | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) 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")} + +