Skip to content

Commit c87a7e8

Browse files
authored
Merge pull request #126 from iilj/fix/#125_other_problems_crash
Fix #125
2 parents 53b48cb + 56593b7 commit c87a7e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/TablePage/ContestTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export const ContestTable: React.FC<Props> = (props) => {
7171
</strong>
7272
{showContestDate && (
7373
<span className="table-contest-date-span">
74-
({dataFormat(new Date(contest.Date), 'yyyy/mm/dd')})
74+
({dataFormat(Date.parse(contest.Date), 'yyyy/mm/dd')})
7575
</span>
7676
)}
7777
<Table striped bordered hover className="contest-other-table">

0 commit comments

Comments
 (0)