Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 1755 | Rev 1757 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1755 Rev 1756
Línea 21... Línea 21...
21
    fontWeight: '600'
21
    fontWeight: '600'
22
  },
22
  },
23
  [`&.${tableCellClasses.body}`]: {
23
  [`&.${tableCellClasses.body}`]: {
24
    position: 'relative',
24
    position: 'relative',
25
    borderRight: '1px solid',
25
    borderRight: '1px solid',
26
    fontWeight: '500',
26
    fontWeight: '500'
27
    '&:last-child': {
-
 
28
      borderBottom: 'none'
-
 
29
    }
-
 
30
  }
27
  }
31
}))
28
}))
Línea 32... Línea 29...
32
 
29
 
33
export default function ReportTable({ reports = [] }) {
30
export default function ReportTable({ reports = [] }) {
Línea 65... Línea 62...
65
                date,
62
                date,
66
                actions
63
                actions
67
              },
64
              },
68
              key
65
              key
69
            ) => (
66
            ) => (
-
 
67
              <TableRow
-
 
68
                key={key}
-
 
69
                sx={{
70
              <TableRow key={key} sx={{ '& td:last-child': { border: 0 } }}>
70
                  '& td:last-child': { border: 0 },
-
 
71
                  '&:last-child td, &:last-child th': { borderBottom: 0 }
-
 
72
                }}
-
 
73
              >
71
                <StyledTableCell component='th' scope='row'>
74
                <StyledTableCell component='th' scope='row'>
72
                  {email}
75
                  {email}
73
                </StyledTableCell>
76
                </StyledTableCell>
74
                <StyledTableCell align='right'>{`${first_name} ${last_name}`}</StyledTableCell>
77
                <StyledTableCell align='right'>{`${first_name} ${last_name}`}</StyledTableCell>
75
                <StyledTableCell align='right'>{status}</StyledTableCell>
78
                <StyledTableCell align='right'>{status}</StyledTableCell>