fix
This commit is contained in:
parent
cd00e28fd7
commit
192070333c
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user