feat: show original filename on image card

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-24 18:15:03 +02:00
parent 949d7c60b9
commit f56e52f801
+2 -1
View File
@@ -138,7 +138,8 @@ export function ImageCard({
{/* Infos */}
<div className="p-3 flex flex-col gap-2 flex-1">
<div>
<p className="text-xs font-mono text-slate-300 truncate">{item.ref}</p>
<p className="text-xs font-mono text-slate-300 truncate" title={item.filename}>{item.filename}</p>
<p className="text-xs text-slate-500 truncate">Réf : {item.ref}</p>
{item.shopifyProductTitle && (
<p className="text-xs text-slate-500 truncate">{item.shopifyProductTitle}</p>
)}