diff --git a/src/components/PricingView.tsx b/src/components/PricingView.tsx
index d265e2b..63fa1da 100644
--- a/src/components/PricingView.tsx
+++ b/src/components/PricingView.tsx
@@ -1611,7 +1611,7 @@ export function PricingView({ data, headers, onSaveRow, onCaptureState, onEdit,
)}
>
{/* Art. No. */}
-
+ |
{row[COLUMNS.ARTICLE_NO]}
|
@@ -1623,12 +1623,12 @@ export function PricingView({ data, headers, onSaveRow, onCaptureState, onEdit,
{/* Line */}
-
+ |
{row[COLUMNS.LINE] || '—'}
|
{/* Classification */}
-
+ |
+ |
{isEditing ? (
{unitOuterBadge(row[unitsOuterIdx])}
|
-
+ |
{row[COLUMNS.OUTER_W] ?? '-'}
|
-
+ |
{row[COLUMNS.OUTER_L] ?? '-'}
|
-
+ |
{row[COLUMNS.OUTER_H] ?? '-'}
|
@@ -1785,7 +1785,7 @@ export function PricingView({ data, headers, onSaveRow, onCaptureState, onEdit,
{containerCols.map(col => {
const colKey = `con_${col.index}`;
return (
-
+ |
{unitBadge(row[col.index], col.name)}
|
);