From 1eba9aab32e39cbf3644041ba58ef896e9a66f1c Mon Sep 17 00:00:00 2001 From: chpark Date: Wed, 20 May 2026 15:29:25 +0900 Subject: [PATCH] =?UTF-8?q?fix(admin/orders):=20=EA=B1=B0=EB=9E=98?= =?UTF-8?q?=EB=AA=85=EC=84=B8=ED=91=9C=20=EC=BB=AC=EB=9F=BC=20=ED=8F=AD=20?= =?UTF-8?q?=EC=9E=AC=EC=A1=B0=EC=A0=95=20=E2=80=94=20=ED=92=88=EB=AA=85=20?= =?UTF-8?q?=EB=84=93=EA=B2=8C,=20=EC=88=98=EB=9F=89=C2=B7=EB=B9=84?= =?UTF-8?q?=EA=B3=A0=20=EC=A2=81=EA=B2=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 수량 컬럼: w-20 → w-14 (header), QtyInput w-16 → w-11 * 비고 컬럼: w-32 → w-20 * 품명은 무제한 폭으로 둬서 줄어든 만큼 자동 확장 화면/이미지 공유/인쇄 모두 동일하게 적용 (캡처 영역 내 변경). Co-Authored-By: Claude Opus 4.7 (1M context) --- src/app/(main)/m/admin/orders/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/(main)/m/admin/orders/page.tsx b/src/app/(main)/m/admin/orders/page.tsx index b30d3ea..bf640a2 100644 --- a/src/app/(main)/m/admin/orders/page.tsx +++ b/src/app/(main)/m/admin/orders/page.tsx @@ -778,12 +778,12 @@ function StatementPreview({ 품명 구분 현재고 - 수량 + 수량 단가 공급가 세액 합계 - 비고 + 비고 {editable && } @@ -1203,7 +1203,7 @@ function QtyInput({ initial, onSave }: { initial: number; onSave: (q: number) => onChange={(e) => setVal(e.target.value)} onBlur={commit} onKeyDown={(e) => { if (e.key === "Enter") (e.target as HTMLInputElement).blur(); }} - className="w-16 h-6 px-1 border border-slate-200 rounded text-[11px] text-right tabular-nums bg-white" + className="w-11 h-6 px-1 border border-slate-200 rounded text-[11px] text-right tabular-nums bg-white" /> ); }