From 05031a1395b59cf2ca69e6971000bb3867abed98 Mon Sep 17 00:00:00 2001 From: Paul Payne Date: Wed, 1 Jul 2026 13:08:46 -0700 Subject: [PATCH] Static service detail: drop the duplicate Subdomain field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A static showed both 'Served at' (from the static block) and 'Subdomain' (the general proxied-service field) — same URL twice. Gate 'Subdomain' to non-static; a static's gateway URL is already 'Served at'. --- app/src/pages/ServiceDetail.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/pages/ServiceDetail.tsx b/app/src/pages/ServiceDetail.tsx index 078826f..15110fe 100644 --- a/app/src/pages/ServiceDetail.tsx +++ b/app/src/pages/ServiceDetail.tsx @@ -101,7 +101,9 @@ export function ServiceDetailPage() { {deployment.health_path} )} - {deployment.subdomain && ( + {/* A static already shows its gateway URL as "Served at" above; only a + proxied (systemd) service surfaces the same thing as "Subdomain". */} + {!isStatic && deployment.subdomain && ( <> Subdomain