mirror of
https://github.com/open-webui/open-webui.git
synced 2026-09-10 22:43:29 +00:00
fix: stop the workspace model id and timestamp overlaying the model name on narrow screens
This commit is contained in:
parent
56d296ef1b
commit
1b85db2a71
1 changed files with 2 additions and 2 deletions
|
|
@ -735,14 +735,14 @@
|
|||
<Tooltip content={model.name} className="min-w-0" placement="top-start">
|
||||
<a
|
||||
href={`/?model=${encodeURIComponent(model.id)}`}
|
||||
class="truncate text-[0.8125rem] leading-5 text-gray-800 group-hover:underline dark:text-gray-200"
|
||||
class="block truncate text-[0.8125rem] leading-5 text-gray-800 group-hover:underline dark:text-gray-200"
|
||||
>
|
||||
{model.name}
|
||||
</a>
|
||||
</Tooltip>
|
||||
|
||||
<div
|
||||
class="min-w-0 max-w-[40%] shrink-0 truncate text-[0.6875rem] leading-5 text-gray-500"
|
||||
class="hidden min-w-0 max-w-[40%] shrink-0 truncate text-[0.6875rem] leading-5 text-gray-500 sm:block"
|
||||
>
|
||||
{model.id}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue