mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-05 18:38:17 -05:00
[GH-ISSUE #13026] feat: Allow to disable the number of active users display for non-admin users #55454
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 @ntqbit on GitHub (Apr 18, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/13026
Originally assigned to: @tjbck, @Classic298 on GitHub.
Check Existing Issues
Problem Description
Currently, if I am not mistaken, there is no way to disable the display of the number of active users.
That is, all users (including non-admin users) can see the number of currently active users.
As per changelog, the active users indicator was added to allow to track the cause of performance drop due to high usage.
Desired Solution you'd like
Primarily because of privacy concerns, I would like to have an option in the admin panel that would allow me to disable the display of the number of active users for non-admin users.
Alternatives Considered
No response
Additional Context
No response
@BerkayOzb commented on GitHub (Apr 19, 2025):
src/lib/components/layout/Sidebar/UserMenu.svelte
{#if $activeUserIds?.length > 0 && role === 'admin'}
@Classic298 commented on GitHub (Dec 20, 2025):
fixed in dev