mirror of
https://github.com/zadam/trilium.git
synced 2025-11-17 22:29:19 +08:00
fix(snippets): warning about missing note IDs when deleting
This commit is contained in:
parent
4a82c3f65a
commit
4cc2fa5300
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ async function handleContentUpdate(affectedNoteIds: string[]) {
|
|||
const templateNoteIds = new Set(templateCache.keys());
|
||||
const affectedTemplateNoteIds = templateNoteIds.intersection(updatedNoteIds);
|
||||
|
||||
await froca.getNotes(affectedNoteIds);
|
||||
await froca.getNotes(affectedNoteIds, true);
|
||||
|
||||
let fullReloadNeeded = false;
|
||||
for (const affectedTemplateNoteId of affectedTemplateNoteIds) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue