fix: remove duplicate closing brace in partials/chat.html
All checks were successful
BotUI CI/CD / build (push) Successful in 50s
All checks were successful
BotUI CI/CD / build (push) Successful in 50s
This commit is contained in:
parent
91e9701c3e
commit
6c0c38d51a
2 changed files with 2 additions and 7 deletions
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -968,7 +968,6 @@ function updateStreaming(content) {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function finalizeStreaming() {
|
||||
var el = document.getElementById(streamingMessageId);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue