Browse Source

feat: also hide placeholder node

Jonathan Kelley 3 years ago
parent
commit
eb13884
1 changed files with 1 additions and 0 deletions
  1. 1 0
      packages/desktop/src/index.js

+ 1 - 0
packages/desktop/src/index.js

@@ -321,6 +321,7 @@ class Interpreter {
 
   CreatePlaceholder(edit) {
     let el = document.createElement("pre");
+    el.hidden = true;
     this.stack.push(el);
     this.nodes[edit.root] = el;
   }