From aebf46493b5d5a6635440c2a2c0902af8d3a9cdb Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Sat, 11 Apr 2026 11:15:41 +0200 Subject: [PATCH] UI: Increase column widths for description headers to prevent cutoff --- src/components/ProductDescriptions.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/ProductDescriptions.tsx b/src/components/ProductDescriptions.tsx index 7593951..97bf94c 100644 --- a/src/components/ProductDescriptions.tsx +++ b/src/components/ProductDescriptions.tsx @@ -35,10 +35,10 @@ export function ProductDescriptions({ data, headers, asinColumnIndex, onEdit, ro [COLUMNS.LINE]: 80, [COLUMNS.LICENSE]: 120, [COLUMNS.CLASSIFICATION]: 100, - [COLUMNS.LONG_DE]: 80, - [COLUMNS.LONG_EN]: 80, - [COLUMNS.SHORT_DE]: 80, - [COLUMNS.SHORT_EN]: 80, + [COLUMNS.LONG_DE]: 110, + [COLUMNS.LONG_EN]: 110, + [COLUMNS.SHORT_DE]: 110, + [COLUMNS.SHORT_EN]: 110, }); const lines = useMemo(() => Array.from(new Set(data.map(r => r[COLUMNS.LINE]).filter(Boolean))), [data]);