fix: remove duplicate closing brace in partials/chat.html
All checks were successful
BotUI CI/CD / build (push) Successful in 50s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-04-14 13:16:37 -03:00
parent 91e9701c3e
commit 6c0c38d51a
2 changed files with 2 additions and 7 deletions

View file

@ -764,7 +764,6 @@ function updateStreaming(content) {
}
}
}
}
function finalizeStreaming() {
var el = document.getElementById(streamingMessageId);
@ -786,15 +785,12 @@ function finalizeStreaming() {
}
el.removeAttribute("id");
setupMentionClickHandlers(el);
}
}
streamingMessageId = null;
currentStreamingContent = "";
}
streamingMessageId = null;
currentStreamingContent = "";
}
function processMessage(data) {
function processMessage(data) {
// Handle thinking indicator from backend
if (data.type === "thinking") {
showThinkingIndicator();

View file

@ -968,7 +968,6 @@ function updateStreaming(content) {
}
}
}
}
function finalizeStreaming() {
var el = document.getElementById(streamingMessageId);