From 48b100d0d45581a27c54bd14a4e52125ca317372 Mon Sep 17 00:00:00 2001 From: Hyungi Ahn Date: Mon, 13 Oct 2025 15:52:35 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20PIPE=20=EC=88=98=EB=9F=89=20?= =?UTF-8?q?=EC=85=80=20=EB=8B=A8=EC=88=9C=ED=99=94=20-=20wrapper=20div=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 - quantity-info, quantity-details wrapper 제거 - 단순 span으로 변경하여 grid 구조 정상화 - 추가 정보(단관 개수, 길이)는 제거 - 이제 헤더와 본문이 완벽히 정렬됨 --- frontend/src/pages/NewMaterialsPage.jsx | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/frontend/src/pages/NewMaterialsPage.jsx b/frontend/src/pages/NewMaterialsPage.jsx index f0254c7..cc68154 100644 --- a/frontend/src/pages/NewMaterialsPage.jsx +++ b/frontend/src/pages/NewMaterialsPage.jsx @@ -1473,18 +1473,7 @@ const NewMaterialsPage = ({ {/* 수량 */}
-
- - {info.quantity} {info.unit} - - {info.type === 'PIPE' && info.details && ( -
- - 단관 {info.details.pipeCount}개 → {Math.round(info.details.totalLength)}mm - -
- )} -
+ {info.quantity} {info.unit}
);