Skip to content

Commit

Permalink
Fix value output for booleans (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
timmo001 authored Nov 19, 2023
1 parent 8c3f7d2 commit f483a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Data/DataItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function DataItemsComponent({
typeof value !== "object" && (
<TableRow key={index}>
<TableCell>{key}</TableCell>
<TableCell>{value}</TableCell>
<TableCell>{String(value)}</TableCell>
<TableCell>
{new Date(
lastUpdated?.[1][key] * 1000
Expand Down

0 comments on commit f483a54

Please sign in to comment.