We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44b836d commit 11d69eeCopy full SHA for 11d69ee
src/components/app/ExecutionSummary.tsx
@@ -67,7 +67,7 @@ export const ExecutionSummary: FC = () => {
67
<HeaderItem>
68
<HeaderSubItem>
69
<FontAwesomeIcon aria-hidden="true" style={{ opacity: 0.75 }} icon={faStopwatch} />
70
- <time dateTime={startDate.toISOString()}>{formatExecutionDistance(startDate)}</time>
+ <time title={startDate.toString()} dateTime={startDate.toISOString()}>{formatExecutionDistance(startDate)}</time>
71
{finishDate && (
72
<>
73
<em className={styles.conjunction}>in</em>
0 commit comments