1
0
Эх сурвалжийг харах

feat: also hide placeholder node

Jonathan Kelley 3 жил өмнө
parent
commit
eb138848ec

+ 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;
   }