From a679a8e9e2f720952d11a5c61b3039fb40f41453 Mon Sep 17 00:00:00 2001 From: shaohuzhang1 Date: Wed, 13 Nov 2024 17:05:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=B7=A5=E4=BD=9C?= =?UTF-8?q?=E6=B5=81=E5=AF=B9=E8=AF=9D,=E6=97=A0=E6=B3=95=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E5=9B=9E=E7=AD=94=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/components/ai-chat/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]