Skip to content

Commit

Permalink
fix(flat-pages): use 24-hours based time format (#1757)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leooeloel committed Nov 1, 2022
1 parent 1b660b2 commit 8d27eae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/flat-pages/src/ReplayPage/ReplayList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function renderTime(
let string = t("record-nth", { nth: i + 1 });
if (record) {
const { beginTime, endTime } = record;
string += " (" + format(beginTime, "hh:mm:ss") + " ~ " + format(endTime, "hh:mm:ss") + ")";
string += " (" + format(beginTime, "HH:mm:ss") + " ~ " + format(endTime, "HH:mm:ss") + ")";
}
return string;
}
Expand Down

0 comments on commit 8d27eae

Please sign in to comment.