Cambios
This commit is contained in:
@@ -38,8 +38,7 @@ function RegistrosCargadosModal({ open, onClose, registros }) {
|
||||
<th className="px-2 py-1 border">Cantidad</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{(registros && typeof registros === 'object' ? Object.entries(registros) : []).map(([registro, cantidad]) => (
|
||||
<tbody> {(registros && typeof registros === 'object' ? Object.entries(registros) : []).map(([registro, cantidad]) => (
|
||||
<tr key={registro}>
|
||||
<td className="px-2 py-1 border">{registro}</td>
|
||||
<td className="px-2 py-1 border text-right">{cantidad}</td>
|
||||
|
||||
Reference in New Issue
Block a user