Fix table
This commit is contained in:
@ -162,15 +162,17 @@ export default function () {
|
||||
All recent inactivity notices (current and ended in last month)
|
||||
</TableCaption>
|
||||
<Thead>
|
||||
<Th>Name</Th>
|
||||
<Th>User ID</Th>
|
||||
<Th>Start Date</Th>
|
||||
<Th>End Date</Th>
|
||||
<Th>View More</Th>
|
||||
<Tr>
|
||||
<Th>Name</Th>
|
||||
<Th>User ID</Th>
|
||||
<Th>Start Date</Th>
|
||||
<Th>End Date</Th>
|
||||
<Th>View More</Th>
|
||||
</Tr>
|
||||
</Thead>
|
||||
<Tbody>
|
||||
{data.map((row) => (
|
||||
<Tr>
|
||||
<Tr key={row.id}>
|
||||
<Td>{row.user.username}</Td>
|
||||
<Td>{row.user.id}</Td>
|
||||
<Td>{row.start}</Td>
|
||||
|
Reference in New Issue
Block a user