From b1c69df4cb2a702ae5b0904d7800c52fc38541ff Mon Sep 17 00:00:00 2001 From: Adam French Date: Thu, 22 Jan 2026 11:07:07 +0000 Subject: [PATCH] happy msg --- nginx/vue/src/components/quick/Chat.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nginx/vue/src/components/quick/Chat.vue b/nginx/vue/src/components/quick/Chat.vue index c376510..d5d4d0a 100644 --- a/nginx/vue/src/components/quick/Chat.vue +++ b/nginx/vue/src/components/quick/Chat.vue @@ -5,7 +5,9 @@ const url = "/api/ws"; const socket = ref(null); const messages = ref([]); -const messageInput = ref(""); +const messageInput = ref( + "This will work soon but for now is bait, please don't worry... it will all come together soon :)", +); onMounted(() => { socket.value = new WebSocket(url);