From de95b6c925437cde16a0f0729581bf527ce89eef Mon Sep 17 00:00:00 2001 From: shaohuzhang1 <80892890+shaohuzhang1@users.noreply.github.com> Date: Sun, 9 Feb 2025 21:32:41 +0800 Subject: [PATCH] fix: The workflow encountered an error in displaying data for the next node of the form node (#2182) --- ui/src/components/ai-chat/component/answer-content/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/ai-chat/component/answer-content/index.vue b/ui/src/components/ai-chat/component/answer-content/index.vue index b90a7043d..f8c9548c5 100644 --- a/ui/src/components/ai-chat/component/answer-content/index.vue +++ b/ui/src/components/ai-chat/component/answer-content/index.vue @@ -82,7 +82,7 @@ const chatMessage = (question: string, type: 'old' | 'new', other_params_data?: } } const add_answer_text_list = (answer_text_list: Array) => { - answer_text_list.push({ content: '' }) + answer_text_list.push([ ]) } const openControl = (event: any) => {