mirror of
https://github.com/open-webui/open-webui
synced 2025-06-26 18:26:48 +00:00
fix: styling
This commit is contained in:
parent
d6fc0ccf65
commit
94502d6494
@ -356,7 +356,11 @@
|
|||||||
{#if status?.action === 'web_search' && status?.urls}
|
{#if status?.action === 'web_search' && status?.urls}
|
||||||
<WebSearchResults {status}>
|
<WebSearchResults {status}>
|
||||||
<div class="flex flex-col justify-center -space-y-0.5">
|
<div class="flex flex-col justify-center -space-y-0.5">
|
||||||
<div class="shimmer text-base line-clamp-1 text-wrap">
|
<div
|
||||||
|
class="{status?.done === false
|
||||||
|
? 'shimmer'
|
||||||
|
: ''} text-base line-clamp-1 text-wrap"
|
||||||
|
>
|
||||||
{status?.description}
|
{status?.description}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -364,7 +368,9 @@
|
|||||||
{:else}
|
{:else}
|
||||||
<div class="flex flex-col justify-center -space-y-0.5">
|
<div class="flex flex-col justify-center -space-y-0.5">
|
||||||
<div
|
<div
|
||||||
class="shimmer text-gray-500 dark:text-gray-500 text-base line-clamp-1 text-wrap"
|
class="{status?.done === false
|
||||||
|
? 'shimmer'
|
||||||
|
: ''} text-gray-500 dark:text-gray-500 text-base line-clamp-1 text-wrap"
|
||||||
>
|
>
|
||||||
{status?.description}
|
{status?.description}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user