Small refactor

pull/21833/head
Jaiwanth 2021-06-01 12:44:05 +05:30
parent 80c0ad82fc
commit 395b6ba4b5
1 changed files with 13 additions and 12 deletions

View File

@ -139,16 +139,17 @@ export function wantsDateSeparator(prevEventDate: Date, nextEventDate: Date): bo
export function formatFullDateNoDayNoTime(date: Date) { export function formatFullDateNoDayNoTime(date: Date) {
const dateTime = date.getFullYear() + return (
"-" + date.getFullYear() +
pad(date.getMonth()) + "-" +
"-" + pad(date.getMonth()) +
pad(date.getDate()) + "-" +
_t(" at ") + pad(date.getDate()) +
pad(date.getHours()) + _t(" at ") +
"." + pad(date.getHours()) +
pad(date.getMinutes()) + "." +
"." + pad(date.getMinutes()) +
pad(date.getSeconds()); "." +
return dateTime; pad(date.getSeconds())
);
} }