mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-08 04:16:03 -05:00
[GH-ISSUE #9161] Keep chat sidepanel submenu open after adding or removing tags to allow for multiple actions #30937
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 @bannert1337 on GitHub (Jan 31, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/9161
Enhancement
Is your feature request related to a problem? Please describe.
Currently, when adding or removing tags to a chat, the submenu closes after each action, requiring users to reopen it for subsequent tag modifications. This creates unnecessary friction when managing multiple tags.
Describe the solution you'd like
The tag submenu should remain open after adding or removing a tag, allowing users to perform multiple tag-related actions without needing to reopen the menu each time.
Describe alternatives you've considered
However, keeping the submenu open seems like the most straightforward and user-friendly solution.
Additional context
This enhancement would significantly improve the workflow for users who frequently manage multiple tags on their chats, particularly in scenarios where:
The implementation should maintain the current functionality while simply persisting the submenu state after each action.
@bxbee commented on GitHub (Feb 1, 2025):
//try this
<html> <head> <style> .tag-menu { display: none; position: absolute; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; } .tag-menu a { color: black; padding: 12px 16px; text-decoration: none; display: block; } .tag-menu a:hover {background-color: #f1f1f1} </style> </head> Manage Tags@tjbck commented on GitHub (Feb 4, 2025):
This won't be implemented as it'll break sidebar searchUI rendering, if you're like to batch edit tags, you can open the chat and edit them from the navbar.