fix(ui): 노드 사이 기본 줄바꿈 제거

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
gm
2026-06-03 02:02:10 +09:00
parent 8b0842eb80
commit 65e946b4e3

View File

@@ -639,7 +639,7 @@ function toText(){
let first=true;
for(const v of node.values){
if(v.type==='node'){
t+='\n'+rNode(v.node); first=false;
t+=rNode(v.node); first=false;
} else if(v.data!==undefined&&v.data!==null&&String(v.data).length){
t+=(first?nl:'\n')+String(v.data); first=false;
}