remove debug logging

This commit is contained in:
zadam 2022-02-16 22:31:02 +01:00
parent 781be527ce
commit a009b4cb6d

View file

@ -59,8 +59,6 @@ class Note extends AbstractEntity {
} }
getVisibleChildNotes() { getVisibleChildNotes() {
console.log(this.children.filter(childNote => !childNote.hasLabel('shareHiddenFromTree')));
return this.children.filter(childNote => !childNote.hasLabel('shareHiddenFromTree')); return this.children.filter(childNote => !childNote.hasLabel('shareHiddenFromTree'));
} }