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