From 432065d18f692938c7910970feae8f38c47faef7 Mon Sep 17 00:00:00 2001 From: mawkone Date: Wed, 13 May 2026 15:12:58 -0700 Subject: [PATCH] feat(ui): add expandable tool details to timeline tool group components --- .../components/vibn-chat/chat-panel.tsx | 103 +++++++++++++++--- 1 file changed, 90 insertions(+), 13 deletions(-) diff --git a/vibn-frontend/components/vibn-chat/chat-panel.tsx b/vibn-frontend/components/vibn-chat/chat-panel.tsx index 5527d77..1ad2041 100644 --- a/vibn-frontend/components/vibn-chat/chat-panel.tsx +++ b/vibn-frontend/components/vibn-chat/chat-panel.tsx @@ -427,26 +427,103 @@ function TimelineToolGroup({ return (
- {!allDone ? ( - - ) : ( - + + + {expanded && ( +
+ {entries.map((e, i) => ( +
+
+ + {friendlyToolName(e.name)} + + {!e.result && e.status === "running" && ( + ... + )} + {e.result && ( + + — {e.result} + + )} +
+ ))} +
)} - - {category} {count > 1 ? `(x${count})` : ""} {!allDone ? "..." : " ✓"} -
); }