mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 19:05:59 +01:00
note paths widget does not show hidden path
This commit is contained in:
@@ -300,7 +300,8 @@ class NoteShort {
|
||||
notePath: path,
|
||||
isInHoistedSubTree: path.includes(hoistedNotePath),
|
||||
isArchived: path.find(noteId => froca.notes[noteId].hasLabel('archived')),
|
||||
isSearch: path.find(noteId => froca.notes[noteId].type === 'search')
|
||||
isSearch: path.find(noteId => froca.notes[noteId].type === 'search'),
|
||||
isHidden: path.includes("hidden")
|
||||
}));
|
||||
|
||||
notePaths.sort((a, b) => {
|
||||
|
||||
Reference in New Issue
Block a user