diff --git a/src/public/app/entities/fnote.js b/src/public/app/entities/fnote.js index 0f5b493da..81d37b8cc 100644 --- a/src/public/app/entities/fnote.js +++ b/src/public/app/entities/fnote.js @@ -426,7 +426,9 @@ class FNote { * @return boolean - true if there's no non-hidden path, note is not cloned to the visible tree */ isHiddenCompletely() { - if (this.noteId === 'root') { + if (this.noteId === '_hidden') { + return true; + } else if (this.noteId === 'root') { return false; }