diff --git a/apps/server/src/becca/entities/bnote.ts b/apps/server/src/becca/entities/bnote.ts index e67d8928be..112543a603 100644 --- a/apps/server/src/becca/entities/bnote.ts +++ b/apps/server/src/becca/entities/bnote.ts @@ -1718,7 +1718,10 @@ class BNote extends AbstractBeccaEntity { } getVisibleChildBranches() { - return this.getChildBranches().filter((branch) => !branch.getNote().isLabelTruthy("shareHiddenFromTree")); + return this.getChildBranches().filter((branch) => { + const note = branch.getNote(); + return !note.isLabelTruthy("shareHiddenFromTree") && !note.noteId.startsWith("_"); + }); } getVisibleChildNotes() {