1
0
mirror of https://github.com/coalaura/whiskr.git synced 2025-09-08 00:29:54 +00:00

some small fixes

This commit is contained in:
Laura
2025-08-30 15:05:32 +02:00
parent dc8ad8d408
commit 118e88ab67
2 changed files with 6 additions and 3 deletions

View File

@@ -714,6 +714,7 @@ body:not(.loading) #loading {
.files {
display: flex;
gap: 6px;
overflow-x: auto;
}
.files:not(.has-files) {

View File

@@ -385,7 +385,7 @@
mark(false);
generate(false);
generate(false, true);
});
// edit option
@@ -940,7 +940,7 @@
let chatController;
function generate(cancel = false) {
function generate(cancel = false, noPush = false) {
if (chatController) {
chatController.abort();
@@ -980,7 +980,9 @@
$reasoningTokens.classList.remove("invalid");
}
pushMessage();
if (!noPush) {
pushMessage();
}
chatController = new AbortController();