diff --git a/ui/src/components/ai-chat/index.vue b/ui/src/components/ai-chat/index.vue index b2b94a5f1cb..5ce521ff018 100644 --- a/ui/src/components/ai-chat/index.vue +++ b/ui/src/components/ai-chat/index.vue @@ -370,7 +370,7 @@ function chatMessage(chat?: any, problem?: string, re_chat?: boolean, other_para */ function getSourceDetail(row: any) { logApi.getRecordDetail(id || props.appId, row.chat_id, row.record_id, loading).then((res) => { - const exclude_keys = ['answer_text', 'id'] + const exclude_keys = ['answer_text', 'id', 'answer_text_list'] Object.keys(res.data).forEach((key) => { if (!exclude_keys.includes(key)) { row[key] = res.data[key]