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>
This commit is contained in:
statxc 2026-04-01 17:46:44 -05:00 committed by GitHub
parent dedd972e3d
commit 056a5ee32a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -429,6 +429,11 @@ export function OrgChart() {
{adapterLabels[agent.adapterType] ?? agent.adapterType}
</span>
)}
{agent && agent.capabilities && (
<span className="text-[10px] text-muted-foreground/80 leading-tight mt-1 line-clamp-2">
{agent.capabilities}
</span>
)}
</div>
</div>
</div>