diff --git a/web/src/pages/chat/index.less b/web/src/pages/chat/index.less
index 7372f5e119..e48798325c 100644
--- a/web/src/pages/chat/index.less
+++ b/web/src/pages/chat/index.less
@@ -8,6 +8,7 @@
.chatAppContent {
overflow-y: auto;
+ width: 100%;
}
.chatAppCard {
diff --git a/web/src/pages/chat/index.tsx b/web/src/pages/chat/index.tsx
index 14557e25c5..51ee878beb 100644
--- a/web/src/pages/chat/index.tsx
+++ b/web/src/pages/chat/index.tsx
@@ -17,6 +17,7 @@ import {
Space,
Spin,
Tag,
+ Typography,
} from 'antd';
import { MenuItemProps } from 'antd/lib/menu/MenuItem';
import classNames from 'classnames';
@@ -46,6 +47,8 @@ import { IDialog } from '@/interfaces/database/chat';
import ChatOverviewModal from './chat-overview-modal';
import styles from './index.less';
+const { Text } = Typography;
+
const Chat = () => {
const dialogList = useSelectFirstDialogOnMount();
const { onRemoveDialog } = useDeleteDialog();
@@ -260,7 +263,14 @@ const Chat = () => {
- {x.name}
+
+
+ {x.name}
+
+
{x.description}
@@ -315,7 +325,14 @@ const Chat = () => {
})}
>
- {x.name}
+
+
+ {x.name}
+
+
{conversationActivated === x.id && x.id !== '' && (