mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +00:00
fix: table align markdown rendering
This commit is contained in:
parent
45d58e73a9
commit
24f0da172e
1 changed files with 1 additions and 1 deletions
|
|
@ -146,7 +146,7 @@
|
||||||
{#each row ?? [] as cell, cellIdx}
|
{#each row ?? [] as cell, cellIdx}
|
||||||
<td
|
<td
|
||||||
class="px-3! py-1.5! text-gray-900 dark:text-white w-max border border-gray-100 dark:border-gray-850"
|
class="px-3! py-1.5! text-gray-900 dark:text-white w-max border border-gray-100 dark:border-gray-850"
|
||||||
style={token.align[cellIdx] ? '' : `text-align: ${token.align[cellIdx]}`}
|
style={token.align[cellIdx] ? `text-align: ${token.align[cellIdx]}` : ''}
|
||||||
>
|
>
|
||||||
<div class="break-normal">
|
<div class="break-normal">
|
||||||
<MarkdownInlineTokens
|
<MarkdownInlineTokens
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue