From 608bdc9f90aaa046d03c47ab761e60e804fdd6a5 Mon Sep 17 00:00:00 2001 From: umsangdon Date: Sat, 29 Aug 2026 15:03:35 +0900 Subject: [PATCH] =?UTF-8?q?fix(B06):=20=EC=A1=B0=EC=A0=95=EC=B0=BD=20?= =?UTF-8?q?=EA=B5=B0=EB=8D=94=EB=8D=94=EA=B8=B0=20=EB=AC=B8=EA=B5=AC?= =?UTF-8?q?=EB=A5=BC=20=EB=BA=80=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - BOX암거: 구체 길이 뒤 '(이 측 자동)' 삭제(조정값이 있을 때의 '(이 측 +Xm)'은 유지) - 세월교: 바닥판 뒤 '(날개벽 각도 종속)' 삭제 검증: BOX '구체 길이 5.34m', 세월교 '바닥판 7.63m'로 표시(오버레이·좌측 동일). --- B06_Section/B06_Section_UI_Cross_Box_Panel.ts | 2 +- B06_Section/B06_Section_UI_Cross_Ford_Panel.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/B06_Section/B06_Section_UI_Cross_Box_Panel.ts b/B06_Section/B06_Section_UI_Cross_Box_Panel.ts index 7897c67f..cbc5410c 100644 --- a/B06_Section/B06_Section_UI_Cross_Box_Panel.ts +++ b/B06_Section/B06_Section_UI_Cross_Box_Panel.ts @@ -106,7 +106,7 @@ export function buildBoxPanel(deps: BoxPanelDeps, opts?: { dock?: boolean }): Bo const adjust = deps.adjustFor(current); lengthLine.textContent = `구체 길이 ${deps.bodyLengthM().toFixed(2)}m` + - (adjust.lengthM > 0 ? ` (이 측 +${adjust.lengthM.toFixed(1)}m)` : " (이 측 자동)"); + (adjust.lengthM > 0 ? ` (이 측 +${adjust.lengthM.toFixed(1)}m)` : ""); riseLine.textContent = `표고 ${adjust.riseM >= 0 ? "+" : ""}${adjust.riseM.toFixed(1)}m`; const ratio = deps.slopeRatio(); slopeLine.textContent = ratio ? `구체 물매 1:${ratio.toFixed(1)}` : "구체 수평"; diff --git a/B06_Section/B06_Section_UI_Cross_Ford_Panel.ts b/B06_Section/B06_Section_UI_Cross_Ford_Panel.ts index d2d967aa..96bd8a1a 100644 --- a/B06_Section/B06_Section_UI_Cross_Ford_Panel.ts +++ b/B06_Section/B06_Section_UI_Cross_Ford_Panel.ts @@ -247,7 +247,7 @@ export function buildFordPanel(deps: FordPanelDeps, opts?: { dock?: boolean }): heightLine.textContent = `높이 ${deps.heightFor(current).toFixed(2)}m` + (adjust.heightM === null ? " (자동)" : ""); moveLine.textContent = `좌우 ${adjust.lateralM.toFixed(1)}m · 상하 ${adjust.slopeM.toFixed(1)}m`; - slabLine.textContent = `바닥판 ${deps.slabLengthM().toFixed(2)}m (날개벽 각도 종속)`; + slabLine.textContent = `바닥판 ${deps.slabLengthM().toFixed(2)}m`; diameter.value = String(deps.pipeDiameterMm()); countValue.textContent = `${deps.pipeCount()}련`; const wing = deps.wingFor(current);