From 056a5ee32a1aac43474030c78b5815cda2c8a79a Mon Sep 17 00:00:00 2001 From: statxc Date: Wed, 1 Apr 2026 17:46:44 -0500 Subject: [PATCH] fix(ui): render agent capabilities field in org chart cards (#2349) * fix(ui): render agent capabilities field in org chart cards Closes #2209 * Update ui/src/pages/OrgChart.tsx Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --------- Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- ui/src/pages/OrgChart.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/src/pages/OrgChart.tsx b/ui/src/pages/OrgChart.tsx index ba905c64..88d0caab 100644 --- a/ui/src/pages/OrgChart.tsx +++ b/ui/src/pages/OrgChart.tsx @@ -429,6 +429,11 @@ export function OrgChart() { {adapterLabels[agent.adapterType] ?? agent.adapterType} )} + {agent && agent.capabilities && ( + + {agent.capabilities} + + )}