Skip to content

Commit

Permalink
fix: detalle en puntos
Browse files Browse the repository at this point in the history
  • Loading branch information
yoelmarain committed Dec 10, 2024
1 parent 70bf455 commit 7de0a31
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ export default function AInhabilitar() {
{alumnosAInhabilitar.map((alumno) => (
<Tr key={alumno.user}>
<Td textAlign="center">{alumno.full_name}</Td>
<Td textAlign="center">{alumno.user}</Td>
<Td textAlign="center">{alumno.legajo}</Td>
<Td textAlign="center">{new Intl.NumberFormat('es-ES').format(alumno.user)}</Td>
<Td textAlign="center">{new Intl.NumberFormat('es-ES').format(alumno.legajo)}</Td>
<Td textAlign="center">
<Button bg='transparent' _hover='transparent' m="0px" p="0px" onClick={() => handleDetailsClick((alumno.user.toString()))}>
<IoEyeOutline size="22px" />
Expand Down

0 comments on commit 7de0a31

Please sign in to comment.