From a009b4cb6dddf8adba144932671e4a2a623aa2c4 Mon Sep 17 00:00:00 2001 From: zadam Date: Wed, 16 Feb 2022 22:31:02 +0100 Subject: [PATCH] remove debug logging --- src/share/shaca/entities/note.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/share/shaca/entities/note.js b/src/share/shaca/entities/note.js index ac7377f88..220eceaa3 100644 --- a/src/share/shaca/entities/note.js +++ b/src/share/shaca/entities/note.js @@ -59,8 +59,6 @@ class Note extends AbstractEntity { } getVisibleChildNotes() { - console.log(this.children.filter(childNote => !childNote.hasLabel('shareHiddenFromTree'))); - return this.children.filter(childNote => !childNote.hasLabel('shareHiddenFromTree')); }