From 559c654fbb1bc7fc4dafea57c6e5322a5a6e22b9 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 4 Dec 2025 09:44:54 +0200 Subject: [PATCH] fix(promoted_attributes): not reacting to inheritable changes --- apps/client/src/services/attributes.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/client/src/services/attributes.ts b/apps/client/src/services/attributes.ts index 694eb1b02..4559c8f8b 100644 --- a/apps/client/src/services/attributes.ts +++ b/apps/client/src/services/attributes.ts @@ -126,9 +126,7 @@ function isAffecting(attrRow: AttributeRow, affectedNote: FNote | null | undefin } } - // TODO: This doesn't seem right. - //@ts-ignore - if (this.isInheritable) { + if (attrRow.isInheritable) { for (const owningNote of owningNotes) { if (owningNote.hasAncestor(attrNote.noteId, true)) { return true;