mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 10:58:17 -05:00
[GH-ISSUE #13771] issue: Scroll wheel doesn't scroll the page when hovering the buttons container element #17024
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rotemdan on GitHub (May 11, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/13771
Check Existing Issues
Installation Method
Docker
Open WebUI Version
v0.6.9
Ollama Version (if applicable)
No response
Operating System
Windows 11
Browser (if applicable)
Brave v1.78.97
Confirmation
README.md.Expected Behavior
Page scrolls using the mouse scroll wheel when cursor is positioned anywhere within the messages window.
Actual Behavior
Page doesn't scroll with scroll the mouse scroll wheel when over the button container
divelement.Steps to Reproduce
Logs & Screenshots
The buttons container

divelement is highlighted in blue, in this image:Additional Information
The behavior was introduced by this commit, which prevents default scroll events over the container, and instead routes them to horizontally scrolling the button container element, even when it doesn't overflow horizontally.
In
src/lib/components/chat/Messages/ResponseMessage.svelte, changing to:Should resolve the issue, by only routing the scroll wheel to horizontal scrolling when the element overflows, and otherwise allowing normal scrolling of the page.
I can give a pull request, but I wanted to report the issue first. Let me know if you want a pull request for this, or prefer a different approach.
@tjbck commented on GitHub (May 14, 2025):
Addressed with
7e241a3904