Skip to content

Commit

Permalink
make the "Message" and "Timestamp" col switch places
Browse files Browse the repository at this point in the history
  • Loading branch information
fishylunar committed Nov 25, 2024
1 parent cf64eb7 commit 6a94f7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/OdinEventsTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ export function OdinEventsTable({ events }: OdinEventsTableProps) {
<TableRow>
<TableCell>Responder</TableCell>
<TableCell>Station</TableCell>
<TableCell>Timestamp</TableCell>
<TableCell>Message</TableCell>
<TableCell>Timestamp</TableCell>
</TableRow>
</TableHeader>
<TableBody>
{events && events.map((odinEvent: OdinEvent) => (
<TableRow key={odinEvent.timestamp}>
<TableCell>{odinEvent.responder}</TableCell>
<TableCell>{odinEvent.station}</TableCell>
<TableCell>{odinEvent.timestamp}</TableCell>
<TableCell>{odinEvent.message}</TableCell>
<TableCell>{odinEvent.timestamp}</TableCell>
</TableRow>
))}
</TableBody>
Expand Down

0 comments on commit 6a94f7f

Please sign in to comment.