From 1e5a7e0dbb720855afa0335b95054988fb26589f Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Tue, 30 Sep 2025 09:10:08 +0800 Subject: [PATCH] fix(Smart Question): The scroll axis cannot scroll upwards --- frontend/src/views/chat/index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/views/chat/index.vue b/frontend/src/views/chat/index.vue index 52c9f7aa6..d5af9613e 100644 --- a/frontend/src/views/chat/index.vue +++ b/frontend/src/views/chat/index.vue @@ -459,6 +459,7 @@ const innerRef = ref() const chatCreatorRef = ref() const scrollToBottom = debounce(() => { + if (scrolling) return nextTick(() => { chatListRef.value?.scrollTo({ top: chatListRef.value.wrapRef.scrollHeight,