This commit is contained in:
beo3000 2026-02-22 16:38:44 +01:00
parent 623d3f90bf
commit 4d00be63e7
2 changed files with 5 additions and 3 deletions

View File

@ -1 +1 @@
1.0.50
1.0.52

View File

@ -64,7 +64,6 @@
const text = noteText.trim();
if (!text) return false;
createHistoryEntry(topic.id, today(), text);
updateTopic(topic.id, { isNew: false });
noteText = "";
noteEditor?.clear();
return true;
@ -72,10 +71,12 @@
function handleNote() {
saveNote();
updateTopic(topic.id, { isNew: false });
processedTopicIds.add(topic.id);
}
function handleSkip() {
updateTopic(topic.id, { isNew: false });
processedTopicIds.add(topic.id);
}
@ -83,12 +84,13 @@
const dateInput = prompt("Datum (YYYY-MM-DD):", "2026-06-01");
if (!dateInput) return;
saveNote();
updateTopic(topic.id, { snoozeUntil: dateInput, status: "snoozed" });
updateTopic(topic.id, { snoozeUntil: dateInput, status: "snoozed", isNew: false });
processedTopicIds.add(topic.id);
}
function handleDone() {
saveNote();
updateTopic(topic.id, { isNew: false });
archiveTopic(topic.id);
}