修复交互内容ai输出解析过大导致布局打乱

This commit is contained in:
junleea 2025-05-03 13:19:03 +08:00
parent 34163edd8b
commit dd8f9f1603
2 changed files with 5 additions and 5 deletions

View File

@ -1013,13 +1013,13 @@ const getFileListData = async () => {
border-radius: 4px;
padding: 10px 15px;
white-space: pre-wrap;
max-width: 70%;
max-width: 800px;
}
.message.assistant .message-content {
background-color: #f3f4f6;
border: 1px solid #dce4eb;
max-width: 70%;
max-width: 1000px;
}
.loading-indicator {

View File

@ -911,13 +911,13 @@ const renderMarkdown = (message: Message, index:number) => {
border-radius: 4px;
padding: 10px 15px;
white-space: pre-wrap;
max-width: 70%;
max-width: 800px;
}
.message.assistant .message-content {
background-color: #f3f4f6;
border: 1px solid #dce4eb;
max-width: 70%;
max-width: 1000px;
}
.loading-indicator {