fix(ui): remove SyncStatusPill from ProductDescriptions SKU column

This commit is contained in:
Christian Vidal Wolf
2026-05-15 10:53:46 +02:00
parent 2944e6958c
commit cf92b85d17
+4 -1
View File
@@ -5,6 +5,7 @@ import { Search, Filter, Edit2, ChevronDown, ChevronUp, X, Maximize2 } from 'luc
import { cn } from '../lib/utils';
import { ColumnFilterPopover } from './ColumnFilterPopover';
import { usePersistentState } from '../contexts/FilterContext';
import { SyncStatusPill } from './SyncStatusPill';
type TabType = 'all' | 'missingLongDE' | 'missingLongEN' | 'missingShortDE' | 'missingShortEN' | 'complete' | 'incomplete';
@@ -382,7 +383,9 @@ export function ProductDescriptions({ data, headers, asinColumnIndex, onEdit, ro
""
)}
>
<td className="px-4 py-3 font-mono text-slate-300 text-xs truncate" style={{ width: columnWidths[COLUMNS.ARTICLE_NO] }}>{row[COLUMNS.ARTICLE_NO]}</td>
<td className="px-4 py-3 font-mono text-slate-300 text-xs truncate" style={{ width: columnWidths[COLUMNS.ARTICLE_NO] }}>
{row[COLUMNS.ARTICLE_NO]}
</td>
<td className="px-4 py-3 font-medium text-white truncate" style={{ width: columnWidths[COLUMNS.ARTICLE_NAME] }} title={row[COLUMNS.ARTICLE_NAME]}>{row[COLUMNS.ARTICLE_NAME]}</td>
{asinColumnIndex !== null && (
<td className="px-4 py-3 font-mono text-slate-300 text-xs truncate" style={{ width: columnWidths[asinColumnIndex] || 100 }} title={row[asinColumnIndex]}>{row[asinColumnIndex] || '—'}</td>