feat(ExecutionStep): show execution date

This commit is contained in:
Ali BARIN
2023-05-12 20:13:47 +00:00
parent bad5e0b855
commit a5dbac9817
3 changed files with 27 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ function ExecutionDate(props: Pick<IExecution, 'createdAt'>) {
const relativeCreatedAt = createdAt.toRelative();
return (
<Tooltip title={createdAt.toLocaleString(DateTime.DATE_MED)}>
<Tooltip title={createdAt.toLocaleString(DateTime.DATETIME_FULL_WITH_SECONDS)}>
<Typography variant="body1" gutterBottom>
{relativeCreatedAt}
</Typography>