Skip to content

Commit de95b6c

Browse files
authored
fix: The workflow encountered an error in displaying data for the next node of the form node (#2182)
1 parent 80a700b commit de95b6c

File tree

1 file changed

+1
-1
lines changed
  • ui/src/components/ai-chat/component/answer-content

1 file changed

+1
-1
lines changed

ui/src/components/ai-chat/component/answer-content/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const chatMessage = (question: string, type: 'old' | 'new', other_params_data?:
8282
}
8383
}
8484
const add_answer_text_list = (answer_text_list: Array<any>) => {
85-
answer_text_list.push({ content: '' })
85+
answer_text_list.push([ ])
8686
}
8787
8888
const openControl = (event: any) => {

0 commit comments

Comments
 (0)