From 16d31a8d4fb1b6a11f94fac388abf4f83e25163b Mon Sep 17 00:00:00 2001 From: Rain-0x01-39 <83620631+Rain-0x01-39@users.noreply.github.com> Date: Sat, 25 Jul 2026 17:37:33 +0800 Subject: [PATCH 1/3] fix: resolve double scrollbar in conversation detail dialog (#9361) --- dashboard/src/views/ConversationPage.vue | 39 +++++++++--------------- 1 file changed, 14 insertions(+), 25 deletions(-) diff --git a/dashboard/src/views/ConversationPage.vue b/dashboard/src/views/ConversationPage.vue index 41e633913e..0f913d495e 100644 --- a/dashboard/src/views/ConversationPage.vue +++ b/dashboard/src/views/ConversationPage.vue @@ -227,20 +227,20 @@ - -
- - {{ isEditingHistory ? 'mdi-eye' : 'mdi-pencil' }} - {{ isEditingHistory ? tm('dialogs.view.previewMode') : tm('dialogs.view.editMode') }} - - - mdi-content-save - {{ tm('dialogs.view.saveChanges') }} - -
+
+ + {{ isEditingHistory ? 'mdi-eye' : 'mdi-pencil' }} + {{ isEditingHistory ? tm('dialogs.view.previewMode') : tm('dialogs.view.editMode') }} + + + mdi-content-save + {{ tm('dialogs.view.saveChanges') }} + +
+
+
mdi-chat-remove @@ -1201,13 +1199,6 @@ export default { return parts; }, - // Manually handle wheel scrolling inside the dialog preview container. - onContainerWheel(event) { - const el = this.$refs.messagesContainer; - if (!el) return; - el.scrollTop += event.deltaY; - }, - // 从内容中提取文本(保留用于其他用途) extractTextFromContent(content) { if (typeof content === 'string') { @@ -1256,8 +1247,6 @@ export default { /* 聊天消息容器样式 */ .conversation-messages-container { - max-height: 500px; - overflow-y: auto; padding: 8px; border-radius: 8px; background-color: #f9f9f9; From 645182331b2b0737bf81511d23a1b70d8ed7233b Mon Sep 17 00:00:00 2001 From: Rain-0x01-39 <83620631+Rain-0x01-39@users.noreply.github.com> Date: Sat, 25 Jul 2026 17:52:29 +0800 Subject: [PATCH 2/3] fix: resolve double scrollbar in console page (#9361) --- dashboard/src/views/ConsolePage.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dashboard/src/views/ConsolePage.vue b/dashboard/src/views/ConsolePage.vue index 5ad67b77ba..a47cda4cd9 100644 --- a/dashboard/src/views/ConsolePage.vue +++ b/dashboard/src/views/ConsolePage.vue @@ -108,7 +108,9 @@ export default {