ENCOA-309

This commit is contained in:
Carlos-Mesquita
2025-01-05 21:03:52 +00:00
parent 61e07dae95
commit 8f77f28aaa
5 changed files with 264 additions and 173 deletions

View File

@@ -116,7 +116,7 @@ const CodeGenImportSummary: React.FC<Props> = ({ infos, parsedExcel, duplicateRo
if (duplicates.length === 0) return null;
return (
<div key={field} className="ml-4 text-sm text-gray-600">
<span className="text-gray-500">{field}:</span> rows {
<span className="text-gray-500">{fieldMapper[field]}:</span> rows {
duplicates.map(([_, rows]) => rows.join(', ')).join('; ')
}
</div>