Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make actual date display on history card
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent de8fc6a commit 9599a53
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/routes/hammer.tsx
Expand Up @@ -121,7 +121,11 @@ export default function () {
<Container mb={3}>
<Card>
<CardHeader>
<Heading size="md">{new Date().toLocaleString()}</Heading>
<Heading size="md">
{new Date(
parseInt(entry.entry.properties.executed_at.integerValue),
).toLocaleString()}
</Heading>
</CardHeader>
<CardBody>
<Stack divider={<StackDivider />} spacing="4">
Expand Down

0 comments on commit 9599a53

Please sign in to comment.