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 35c126e commit 0a62067Copy full SHA for 0a62067
client/src/templates/Challenges/exam-download/attempts.tsx
@@ -93,7 +93,7 @@ export function Attempts({ examChallengeId }: AttemptsProps) {
93
<tbody>
94
{attempts.map(attempt => (
95
<tr key={attempt.startTime}>
96
- <td>{new Date(attempt.startTime).toTimeString()}</td>
+ <td>{new Date(attempt.startTime).toLocaleString()}</td>
97
<td>{renderScore(attempt)}</td>
98
<td>{renderStatus(attempt)}</td>
99
</tr>
0 commit comments