Skip to content

Commit 6102c71

Browse files
committed
fix: 修复工作流对话,无法显示回答内容
1 parent 7369231 commit 6102c71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/ai-chat/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ function chatMessage(chat?: any, problem?: string, re_chat?: boolean, other_para
370370
*/
371371
function getSourceDetail(row: any) {
372372
logApi.getRecordDetail(id || props.appId, row.chat_id, row.record_id, loading).then((res) => {
373-
const exclude_keys = ['answer_text', 'id']
373+
const exclude_keys = ['answer_text', 'id', 'answer_text_list']
374374
Object.keys(res.data).forEach((key) => {
375375
if (!exclude_keys.includes(key)) {
376376
row[key] = res.data[key]

0 commit comments

Comments
 (0)