mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 10:58:17 -05:00
[GH-ISSUE #22784] issue: [Sidebar] Chat Menu Dropdown Remains Open After Clicking "Clone" #35346
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 @silentoplayz on GitHub (Mar 18, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/22784
Check Existing Issues
Installation Method
Docker
Open WebUI Version
v0.8.10
Ollama Version (if applicable)
v0.18.0
Operating System
Ubuntu 24.04.4 LTS
Browser (if applicable)
Mozilla Firefox Snap for Ubuntu v148.0.2 (64-bit) / Google Chrome v146.0.7680.80 (Official Build) (64-bit)
Confirmation
README.md.Expected Behavior
When clicking the Clone button in the chat's three-dots (hamburger) menu, the chat should be cloned, the user should be navigated to the new chat, and the three-dots menu on the original chat should close. This should match the behavior of other actions like "Rename" or "Archive" which result in the menu being dismissed.
Actual Behavior
The chat is cloned successfully and the user is navigated to the new chat, but the three-dots menu on the original chat item remains open in the sidebar.
Steps to Reproduce
Logs & Screenshots
Screenshot showing the menu still open after cloning:
Additional Information
The issue is located in
src/lib/components/layout/Sidebar/ChatMenu.svelte. ThecloneChatHandler()call in the button'son:clickdoes not include a statement to set the dropdown'sshowstate tofalse.Adding
show = false;after the handler call should fix this inconsistency.@tjbck commented on GitHub (Mar 21, 2026):
Addressed!
@silentoplayz commented on GitHub (Mar 22, 2026):
LGTM, thanks!