mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-15 19:37:47 +01:00
Merge pull request #16777 from itk-dev/feature/make-chat-messages-an-unordered-list
FEAT: Make chat message an unordered list
This commit is contained in:
@@ -421,7 +421,7 @@
|
||||
</div>
|
||||
</Loader>
|
||||
{/if}
|
||||
|
||||
<ul role="log" aria-live="polite" aria-relevant="additions" aria-atomic="false">
|
||||
{#each messages as message, messageIdx (message.id)}
|
||||
<Message
|
||||
{chatId}
|
||||
@@ -450,6 +450,7 @@
|
||||
{topPadding}
|
||||
/>
|
||||
{/each}
|
||||
</ul>
|
||||
</section>
|
||||
<div class="pb-12" />
|
||||
{#if bottomPadding}
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
export let topPadding = false;
|
||||
</script>
|
||||
|
||||
<div
|
||||
<li
|
||||
class="flex flex-col justify-between px-5 mb-3 w-full {($settings?.widescreenMode ?? null)
|
||||
? 'max-w-full'
|
||||
: 'max-w-5xl'} mx-auto rounded-lg group"
|
||||
@@ -120,4 +120,4 @@
|
||||
/>
|
||||
{/if}
|
||||
{/if}
|
||||
</div>
|
||||
</li>
|
||||
|
||||
Reference in New Issue
Block a user