mirror of
https://github.com/open-webui/open-webui.git
synced 2026-06-10 04:06:52 -05:00
[GH-ISSUE #21088] Model description tooltip clips at top of screen #73980
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 @thekirkulees on GitHub (Feb 1, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/21088
Description
When hovering over the info icon to view a model's description in the model selector, the tooltip appears above the element (placement="top") and gets clipped at the top of the viewport when the model is near the top of the dropdown list.
Expected Behavior
The tooltip should auto-position to remain fully visible within the viewport - either by:
placement="bottom"for model descriptions, orCurrent Behavior
The tooltip always renders above the icon regardless of available viewport space, causing long descriptions to be cut off at the top of the screen.
Location
src/lib/components/chat/ModelSelector/ModelItem.svelteCurrent code:
Suggested Fix
Add placement or tippyOptions to enable viewport-aware positioning:
Or for auto-positioning:
Environment
@silentoplayz commented on GitHub (Feb 4, 2026):
Can you provide screenshots?