1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Don't pad 12h timestamps

Signed-off-by: Travis Ralston <travpc@gmail.com>
This commit is contained in:
turt2live
2017-06-30 08:44:56 -06:00
parent 1cfc2773ea
commit 01b7d7bb7c

View File

@@ -55,7 +55,6 @@ function twelveHourTime(date) {
let hours = date.getHours() % 12;
const minutes = pad(date.getMinutes());
const ampm = date.getHours() >= 12 ? 'PM' : 'AM';
hours = pad(hours ? hours : 12);
return `${hours}:${minutes}${ampm}`;
}