From 165852e7383ceb9952446b18533e38fb26b5a3a0 Mon Sep 17 00:00:00 2001 From: Adam French Date: Tue, 10 Mar 2026 12:02:14 +0000 Subject: [PATCH] Remove extra attach and rename bottom button --- nginx/vue/src/components/util/Chat.vue | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/nginx/vue/src/components/util/Chat.vue b/nginx/vue/src/components/util/Chat.vue index c1610db..3b3a4f8 100644 --- a/nginx/vue/src/components/util/Chat.vue +++ b/nginx/vue/src/components/util/Chat.vue @@ -57,7 +57,10 @@ function parseMessageParts(text) { let match; while ((match = urlRegex.exec(text)) !== null) { if (match.index > lastIndex) { - parts.push({ type: "text", value: text.slice(lastIndex, match.index) }); + parts.push({ + type: "text", + value: text.slice(lastIndex, match.index), + }); } parts.push({ type: "link", value: match[1] }); lastIndex = urlRegex.lastIndex; @@ -85,8 +88,18 @@ onUnmounted(() => { >

{{ message.authorId }}: -