Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix table
regalijan committed Jan 25, 2025
1 parent d5ad727 commit 0349c3a
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions app/routes/inactivities.tsx
@@ -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>

0 comments on commit 0349c3a

Please sign in to comment.