mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 04:45:19 +00:00
fix: fix incorrect display of undefined tool ID
This commit is contained in:
parent
5043e7fc8c
commit
f1b50fb83a
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@
|
|||
</Tooltip>
|
||||
<div class=" capitalize outline-hidden w-full bg-transparent">
|
||||
{connection?.info?.name ?? connection?.url}
|
||||
<span class="text-gray-500">{connection?.info?.id}</span>
|
||||
<span class="text-gray-500">{connection?.info?.id ?? ''}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue