From 95e501a9c8edba3db9c1e119ff88669472faa21d Mon Sep 17 00:00:00 2001 From: josh Date: Fri, 17 Apr 2026 14:11:13 -0400 Subject: [PATCH] fix(hosts): tweak detail page copy and summary style - Render State/Stack as plain text in the summary (badges still in header). - Show FM UUID instead of problem text in the timeline entries. - Rename PART_ARRIVED label to "Part deployed". Co-Authored-By: Claude Opus 4.7 --- apps/web/src/components/hosts/HostTimeline.tsx | 6 +++--- apps/web/src/pages/HostDetail.tsx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/web/src/components/hosts/HostTimeline.tsx b/apps/web/src/components/hosts/HostTimeline.tsx index e4dc599..705e331 100644 --- a/apps/web/src/components/hosts/HostTimeline.tsx +++ b/apps/web/src/components/hosts/HostTimeline.tsx @@ -78,8 +78,8 @@ function EntryRow({ entry }: { entry: HostTimelineEntry }) { <>
{label} - - {fm.problem} + + {fm.id}
{formatWhen(entry.at)}
@@ -120,7 +120,7 @@ function EntryRow({ entry }: { entry: HostTimelineEntry }) { case 'PART_ARRIVED': case 'PART_DEPARTED': { const { part } = entry; - const label = entry.type === 'PART_ARRIVED' ? 'Part arrived' : 'Part departed'; + const label = entry.type === 'PART_ARRIVED' ? 'Part deployed' : 'Part departed'; return ( <>
diff --git a/apps/web/src/pages/HostDetail.tsx b/apps/web/src/pages/HostDetail.tsx index 85ef375..61fc0c8 100644 --- a/apps/web/src/pages/HostDetail.tsx +++ b/apps/web/src/pages/HostDetail.tsx @@ -144,8 +144,8 @@ export default function HostDetail() { value={{host.assetId}} /> - } /> - } /> + +