mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-14 21:35:19 +00:00
refac
This commit is contained in:
parent
25994dd3da
commit
c8071a3180
1 changed files with 18 additions and 14 deletions
|
|
@ -406,7 +406,9 @@
|
||||||
? ' bg-blue-300/10 outline outline-blue-500/50 outline-1'
|
? ' bg-blue-300/10 outline outline-blue-500/50 outline-1'
|
||||||
: 'bg-gray-300/10 dark:bg-gray-500/10 hover:outline hover:outline-gray-700/30 dark:hover:outline-gray-300/30 hover:outline-1'}"
|
: 'bg-gray-300/10 dark:bg-gray-500/10 hover:outline hover:outline-gray-700/30 dark:hover:outline-gray-300/30 hover:outline-1'}"
|
||||||
on:click={() => {
|
on:click={() => {
|
||||||
onReaction(reaction.name);
|
if (onReaction) {
|
||||||
|
onReaction(name);
|
||||||
|
}
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Emoji shortCode={reaction.name} />
|
<Emoji shortCode={reaction.name} />
|
||||||
|
|
@ -420,19 +422,21 @@
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
{/each}
|
{/each}
|
||||||
|
|
||||||
<EmojiPicker
|
{#if onReaction}
|
||||||
onSubmit={(name) => {
|
<EmojiPicker
|
||||||
onReaction(name);
|
onSubmit={(name) => {
|
||||||
}}
|
onReaction(name);
|
||||||
>
|
}}
|
||||||
<Tooltip content={$i18n.t('Add Reaction')}>
|
>
|
||||||
<div
|
<Tooltip content={$i18n.t('Add Reaction')}>
|
||||||
class="flex items-center gap-1.5 bg-gray-500/10 hover:outline hover:outline-gray-700/30 dark:hover:outline-gray-300/30 hover:outline-1 transition rounded-xl px-1 py-1 cursor-pointer text-gray-500 dark:text-gray-400"
|
<div
|
||||||
>
|
class="flex items-center gap-1.5 bg-gray-500/10 hover:outline hover:outline-gray-700/30 dark:hover:outline-gray-300/30 hover:outline-1 transition rounded-xl px-1 py-1 cursor-pointer text-gray-500 dark:text-gray-400"
|
||||||
<FaceSmile />
|
>
|
||||||
</div>
|
<FaceSmile />
|
||||||
</Tooltip>
|
</div>
|
||||||
</EmojiPicker>
|
</Tooltip>
|
||||||
|
</EmojiPicker>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue