From 31c8ad611cea1834160e0a71825bc26d5e2d1345 Mon Sep 17 00:00:00 2001 From: zhaoying Date: Mon, 2 Feb 2026 10:07:48 +0800 Subject: [PATCH] fix: chat conversation_id add node_start --- web/src/views/Conversation/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/views/Conversation/index.tsx b/web/src/views/Conversation/index.tsx index 12d17cda..3b7b30d5 100644 --- a/web/src/views/Conversation/index.tsx +++ b/web/src/views/Conversation/index.tsx @@ -178,6 +178,7 @@ const Conversation: FC = () => { data.forEach((item) => { switch(item.event) { case 'start': + case 'node_start': const { conversation_id: newId } = item.data as { conversation_id: string } currentConversationId = newId break