From 91967ae622ff125698e82bca26718fae5b6022a3 Mon Sep 17 00:00:00 2001 From: shyusi <1298902753@qq.com> Date: Tue, 16 Jul 2024 17:39:47 +0800 Subject: [PATCH] bugfix:fix table scroll bug (#1725) Co-authored-by: sishangyu --- web/components/chat/chat-content/config.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/chat/chat-content/config.tsx b/web/components/chat/chat-content/config.tsx index f52d87fad..eebc6ea57 100644 --- a/web/components/chat/chat-content/config.tsx +++ b/web/components/chat/chat-content/config.tsx @@ -233,7 +233,7 @@ const extraComponents: MarkdownComponent = { const DataItem = { key: 'data', label: 'Data', - children: , + children:
, }; const TabItems: TabsProps['items'] = data?.type === 'response_table' ? [DataItem, SqlItem] : [ChartItem, SqlItem, DataItem];