From 65e946b4e3495f8f64fcf1f396f84b6abbc9ff93 Mon Sep 17 00:00:00 2001 From: gm Date: Wed, 3 Jun 2026 02:02:10 +0900 Subject: [PATCH] =?UTF-8?q?fix(ui):=20=EB=85=B8=EB=93=9C=20=EC=82=AC?= =?UTF-8?q?=EC=9D=B4=20=EA=B8=B0=EB=B3=B8=20=EC=A4=84=EB=B0=94=EA=BF=88=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- ui/builder.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/builder.html b/ui/builder.html index 2f320f2..badae63 100644 --- a/ui/builder.html +++ b/ui/builder.html @@ -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; }