fix: resolve JSX syntax error (unclosed span tag) in PricingView

This commit is contained in:
Christian Vidal Wolf
2026-04-24 20:22:55 +02:00
parent d50ecc9506
commit a452283fbb
+1 -1
View File
@@ -1349,7 +1349,7 @@ export function PricingView({ data, headers, onSaveRow, onCaptureState, onEdit,
)} onClick={() => handleSort('itemToLogistic')}> )} onClick={() => handleSort('itemToLogistic')}>
<span className="flex items-center gap-1"> <span className="flex items-center gap-1">
{isPinned('itemToLogistic') && <Pin className="w-3 h-3 text-blue-400 shrink-0" />} {isPinned('itemToLogistic') && <Pin className="w-3 h-3 text-blue-400 shrink-0" />}
Item to Logistic <SortIcon current={sortConfig.key === 'itemToLogistic' ? sortConfig.direction : null} /></span> Item to Logistic <SortIcon current={sortConfig.key === 'itemToLogistic' ? sortConfig.direction : null} />
<button <button
id="filter-trigger-logistic" id="filter-trigger-logistic"
onClick={(e) => { e.stopPropagation(); setOpenFilter(openFilter === 'logistic' ? null : 'logistic'); }} onClick={(e) => { e.stopPropagation(); setOpenFilter(openFilter === 'logistic' ? null : 'logistic'); }}