From 5bf9bef3c3d6da3066f53034513f536d963795fd Mon Sep 17 00:00:00 2001 From: Christina Tong Date: Thu, 22 Jan 2026 12:42:29 -0800 Subject: [PATCH] chore: add convo id to agent link in message search (#639) --- src/cli/components/MessageSearch.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/cli/components/MessageSearch.tsx b/src/cli/components/MessageSearch.tsx index d61a4d4..5389bef 100644 --- a/src/cli/components/MessageSearch.tsx +++ b/src/cli/components/MessageSearch.tsx @@ -314,6 +314,7 @@ export function MessageSearch({ onClose, initialQuery }: MessageSearchProps) { date?: string; created_at?: string; agent_id?: string; + conversation_id?: string; }; const timestamp = msgWithDate.date ? formatRelativeTime(msgWithDate.date) @@ -323,6 +324,7 @@ export function MessageSearch({ onClose, initialQuery }: MessageSearchProps) { "", ); const agentId = msgWithDate.agent_id || "unknown"; + const conversationId = msgWithDate.conversation_id; const createdAt = formatLocalTime(msgWithDate.created_at); // Calculate available width for message text @@ -370,13 +372,13 @@ export function MessageSearch({ onClose, initialQuery }: MessageSearchProps) { <> · view message · agent: {agentId}