From e5be9f81e0795e344690467a575446be364acf3d Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Sat, 28 Mar 2026 16:20:07 +0100 Subject: [PATCH] fix(ui): restore agents in sidebar for ops quick access --- ui/src/components/LayoutShell.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ui/src/components/LayoutShell.tsx b/ui/src/components/LayoutShell.tsx index f0e331bf..e860216e 100644 --- a/ui/src/components/LayoutShell.tsx +++ b/ui/src/components/LayoutShell.tsx @@ -118,7 +118,12 @@ function LayoutContent() { name: r.routeId, exchangeCount: r.exchangeCount, })), - agents: [], + agents: (app.agents || []).map((a: any) => ({ + id: a.id, + name: a.name, + status: a.status as 'live' | 'stale' | 'dead', + tps: a.tps, + })), })); }, [catalog]);