From 5db4204df2078b2a696f9a8c372a75aa9824b66f Mon Sep 17 00:00:00 2001 From: "christian.vidal" Date: Fri, 27 Mar 2026 13:35:22 +0100 Subject: [PATCH] debug: add classification and stock columns to verify EOL logic --- src/components/ProductDescriptions.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/ProductDescriptions.tsx b/src/components/ProductDescriptions.tsx index 7afe6c2..320b916 100644 --- a/src/components/ProductDescriptions.tsx +++ b/src/components/ProductDescriptions.tsx @@ -177,6 +177,8 @@ export function ProductDescriptions({ data, onEdit }: ProductDescriptionsProps) { col: COLUMNS.LONG_EN, label: 'Long EN' }, { col: COLUMNS.SHORT_DE, label: 'Short DE' }, { col: COLUMNS.SHORT_EN, label: 'Short EN' }, + { col: COLUMNS.CLASSIFICATION, label: 'Classif.' }, + { col: COLUMNS.ITEM_AVAILABLE, label: 'Stock' }, ].map(({ col, label }) => ( + {String(row[COLUMNS.CLASSIFICATION] || 'N/A')} + {String(row[COLUMNS.ITEM_AVAILABLE] || '0')}