Skip to content

Commit 8d27eae

Browse files
authored
fix(flat-pages): use 24-hours based time format (#1757)
1 parent 1b660b2 commit 8d27eae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/flat-pages/src/ReplayPage/ReplayList.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function renderTime(
107107
let string = t("record-nth", { nth: i + 1 });
108108
if (record) {
109109
const { beginTime, endTime } = record;
110-
string += " (" + format(beginTime, "hh:mm:ss") + " ~ " + format(endTime, "hh:mm:ss") + ")";
110+
string += " (" + format(beginTime, "HH:mm:ss") + " ~ " + format(endTime, "HH:mm:ss") + ")";
111111
}
112112
return string;
113113
}

0 commit comments

Comments
 (0)