chore: add convo id to agent link in message search (#639)

This commit is contained in:
Christina Tong
2026-01-22 12:42:29 -08:00
committed by GitHub
parent dccc18ee46
commit 5bf9bef3c3

View File

@@ -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) {
<>
<Text dimColor> · </Text>
<Link
url={`https://app.letta.com/projects/default-project/agents/${agentId}?searchTerm=${encodeURIComponent(activeQuery)}&messageId=${msgId}`}
url={`https://app.letta.com/projects/default-project/agents/${agentId}?searchTerm=${encodeURIComponent(activeQuery)}&messageId=${msgId}${conversationId ? `&conversation=${encodeURIComponent(conversationId)}` : ""}`}
>
<Text color={colors.link.text}>view message</Text>
</Link>
<Text dimColor> · agent: </Text>
<Link
url={`https://app.letta.com/projects/default-project/agents/${agentId}`}
url={`https://app.letta.com/projects/default-project/agents/${agentId}${conversationId ? `?conversation=${encodeURIComponent(conversationId)}` : ""}`}
>
<Text color={colors.link.text}>{agentId}</Text>
</Link>