Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
shini4i committed May 27, 2024
1 parent 6339f2a commit a205c45
Show file tree
Hide file tree
Showing 2 changed files with 141 additions and 151 deletions.
4 changes: 2 additions & 2 deletions web/src/Components/TaskView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -204,15 +204,15 @@ export default function TaskView() {
Created
</Typography>
<Typography variant="body1">
{formatDateTime(task.created)}
{formatDateTime(Number(task.created))}
</Typography>
</Grid>
<Grid item xs={12} sm={6}>
<Typography variant="body2" color="textSecondary">
Updated
</Typography>
<Typography variant="body1">
{formatDateTime(task.updated)}
{formatDateTime(Number(task.updated))}
</Typography>
</Grid>
<Grid item xs={12} sm={6}>
Expand Down
Loading

0 comments on commit a205c45

Please sign in to comment.