refactor: add conversation ID display to conversation info panel and update translations

This commit is contained in:
mlogclub
2026-07-25 12:28:43 +08:00
parent 6316c2b94f
commit e4ad83dc20
4 changed files with 15 additions and 1 deletions
@@ -255,6 +255,13 @@ export function ConversationInfoPanel({
</p>
) : (
<div className="space-y-4 py-3">
<section>
<DetailRow
label={t("conversation.conversationId")}
value={`${conversation.id}`}
valueClassName="font-mono text-xs"
/>
</section>
<CustomerBody conversation={conversation} />
<WorkflowRunsSection conversation={conversation} />
</div>