Small refactor
This commit is contained in:
parent
80c0ad82fc
commit
395b6ba4b5
1 changed files with 13 additions and 12 deletions
|
@ -139,7 +139,8 @@ 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()) +
|
||||||
"-" +
|
"-" +
|
||||||
|
@ -149,6 +150,6 @@ export function formatFullDateNoDayNoTime(date: Date) {
|
||||||
"." +
|
"." +
|
||||||
pad(date.getMinutes()) +
|
pad(date.getMinutes()) +
|
||||||
"." +
|
"." +
|
||||||
pad(date.getSeconds());
|
pad(date.getSeconds())
|
||||||
return dateTime;
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue