mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 02:45:54 +01:00
display properly relations in note map even if they are not in the subtree, closes #2251
This commit is contained in:
@@ -764,8 +764,8 @@ class Note extends AbstractEntity {
|
||||
}
|
||||
|
||||
/** @return {String[]} */
|
||||
getSubtreeNoteIds() {
|
||||
return this.getSubtreeNotes().map(note => note.noteId);
|
||||
getSubtreeNoteIds(includeArchived = true) {
|
||||
return this.getSubtreeNotes(includeArchived).map(note => note.noteId);
|
||||
}
|
||||
|
||||
getDescendantNoteIds() {
|
||||
|
||||
Reference in New Issue
Block a user