From 192070333cdc135db3cfd648be586f24bd044e04 Mon Sep 17 00:00:00 2001 From: Christian Rute Date: Thu, 31 Oct 2024 15:52:28 +0100 Subject: [PATCH] fix --- client/js/chat.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/js/chat.js b/client/js/chat.js index b402be0..9d38052 100644 --- a/client/js/chat.js +++ b/client/js/chat.js @@ -137,7 +137,7 @@ function loadAllChatSessions() { chatCount = Math.max(chatCount, chatId + 1); // Chat-Zähler aktualisieren } }); - + console.log(chatCount) // Lade den neuesten Chat-Verlauf if (chatCount > 0) { loadChatHistory(chatCount - 1); @@ -156,6 +156,10 @@ const chatInput = document.getElementById('chatInput'); // Event-Listener für das Senden der Nachricht und das Erstellen eines Zeilenumbruchs chatInput.addEventListener('keydown', (event) => { if (event.key === 'Enter') { + if (currentChatId == null){ + createNewChat(); + } + // Prüfen, ob die Shift-Taste nicht gedrückt wird if (!event.shiftKey) { event.preventDefault(); // Verhindert das Standardverhalten (Absenden des Formulars)