mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
refac
This commit is contained in:
parent
2722613cde
commit
5d2e725f81
2 changed files with 5 additions and 4 deletions
|
|
@ -821,6 +821,7 @@
|
|||
{:else}
|
||||
<textarea
|
||||
id="chat-input"
|
||||
dir="auto"
|
||||
bind:this={chatInputElement}
|
||||
class="scrollbar-hidden bg-transparent dark:text-gray-100 outline-hidden w-full pt-3 px-1 resize-none"
|
||||
placeholder={placeholder ? placeholder : $i18n.t('Send a Message')}
|
||||
|
|
|
|||
|
|
@ -184,9 +184,9 @@
|
|||
{/if}
|
||||
{:else if token.type === 'list'}
|
||||
{#if token.ordered}
|
||||
<ol start={token.start || 1}>
|
||||
<ol start={token.start || 1} dir="auto">
|
||||
{#each token.items as item, itemIdx}
|
||||
<li dir="auto" class="text-start">
|
||||
<li class="text-start">
|
||||
{#if item?.task}
|
||||
<input
|
||||
class=" translate-y-[1px] -translate-x-1"
|
||||
|
|
@ -216,9 +216,9 @@
|
|||
{/each}
|
||||
</ol>
|
||||
{:else}
|
||||
<ul>
|
||||
<ul dir="auto">
|
||||
{#each token.items as item, itemIdx}
|
||||
<li dir="auto" class="text-start">
|
||||
<li class="text-start">
|
||||
{#if item?.task}
|
||||
<input
|
||||
class=" translate-y-[1px] -translate-x-1"
|
||||
|
|
|
|||
Loading…
Reference in a new issue