From a2a4a796dcfd82b203e57310ce39fa4a2386794a Mon Sep 17 00:00:00 2001 From: Aleix Soler Date: Sat, 19 Jul 2025 17:17:34 +0200 Subject: [PATCH] fix: clear status dont remove the fronttmater tag --- core/noteStatusService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/noteStatusService.ts b/core/noteStatusService.ts index 624d515..97f9274 100644 --- a/core/noteStatusService.ts +++ b/core/noteStatusService.ts @@ -161,7 +161,7 @@ export class NoteStatusService extends BaseNoteStatusService { this.file, (frontmatter) => { if (frontmatterTagName in frontmatter) { - delete frontmatter[frontmatterTagName]; + frontmatter[frontmatterTagName] = []; } }, );