🔧 PIPE 수량 셀 단순화 - wrapper div 제거
Some checks failed
SonarQube Analysis / SonarQube Scan (push) Has been cancelled
Some checks failed
SonarQube Analysis / SonarQube Scan (push) Has been cancelled
- quantity-info, quantity-details wrapper 제거 - 단순 span으로 변경하여 grid 구조 정상화 - 추가 정보(단관 개수, 길이)는 제거 - 이제 헤더와 본문이 완벽히 정렬됨
This commit is contained in:
@@ -1473,18 +1473,7 @@ const NewMaterialsPage = ({
|
|||||||
|
|
||||||
{/* 수량 */}
|
{/* 수량 */}
|
||||||
<div className="material-cell">
|
<div className="material-cell">
|
||||||
<div className="quantity-info">
|
<span>{info.quantity} {info.unit}</span>
|
||||||
<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>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user