Explorar o código

feat: also hide placeholder node

Jonathan Kelley %!s(int64=3) %!d(string=hai) anos
pai
achega
eb13884
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  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;
   }