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}