🔧 PIPE 수량 셀 단순화 - wrapper div 제거
Some checks failed
SonarQube Analysis / SonarQube Scan (push) Has been cancelled

- quantity-info, quantity-details wrapper 제거
- 단순 span으로 변경하여 grid 구조 정상화
- 추가 정보(단관 개수, 길이)는 제거
- 이제 헤더와 본문이 완벽히 정렬됨
This commit is contained in:
Hyungi Ahn
2025-10-13 15:52:35 +09:00
parent f1fe614977
commit 48b100d0d4

View File

@@ -1473,18 +1473,7 @@ const NewMaterialsPage = ({
{/* 수량 */}
<div className="material-cell">
<div className="quantity-info">
<span className="quantity-value">
{info.quantity} {info.unit}
</span>
{info.type === 'PIPE' && info.details && (
<div className="quantity-details">
<small>
단관 {info.details.pipeCount} {Math.round(info.details.totalLength)}mm
</small>
</div>
)}
</div>
<span>{info.quantity} {info.unit}</span>
</div>
</div>
);