Should defo be the fix please god
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 2m24s

This commit is contained in:
2026-03-13 16:35:02 +00:00
parent e1fe281586
commit b63cc911a7

View File

@@ -82,17 +82,11 @@ onUnmounted(() => {
<template>
<div>
<Header>Chat</Header>
<div class="flex-col flex">
<div
ref="messagesContainer"
class="flex flex-col overflow-y-auto p-2"
>
<div ref="messagesContainer" class="flex flex-col overflow-y-auto p-2">
<p v-for="message in messages" :key="message.id">
<span class="text-tertiary">{{ message.authorId }}:</span>
<template
v-for="(part, i) in parseMessageParts(
message.text || '',
)"
v-for="(part, i) in parseMessageParts(message.text || '')"
:key="i"
>
<a
@@ -147,10 +141,7 @@ onUnmounted(() => {
@click="fileInput.click()"
>Attach</Button
>
<Button class="flex-1" @click="scrollToBottom"
>Bottom</Button
>
</div>
<Button class="flex-1" @click="scrollToBottom">Bottom</Button>
</div>
</div>
</div>