mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-17 14:55:23 +00:00
fix: styling
This commit is contained in:
parent
d6fc0ccf65
commit
94502d6494
1 changed files with 8 additions and 2 deletions
|
|
@ -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 a new issue