This commit is contained in:
Timothy Jaeryang Baek 2025-04-06 16:53:30 -07:00
parent 2722613cde
commit 5d2e725f81
2 changed files with 5 additions and 4 deletions

View File

@ -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')}

View File

@ -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"