Unminify CSS and apply suggestions from the design team
This commit is contained in:
+11
-1
@@ -141,7 +141,7 @@ export function formatFullDateNoDay(date: Date) {
|
||||
return (
|
||||
date.getFullYear() +
|
||||
"-" +
|
||||
pad(date.getMonth()) +
|
||||
pad(date.getMonth() + 1) +
|
||||
"-" +
|
||||
pad(date.getDate()) +
|
||||
_t(" at ") +
|
||||
@@ -152,3 +152,13 @@ export function formatFullDateNoDay(date: Date) {
|
||||
pad(date.getSeconds())
|
||||
);
|
||||
}
|
||||
|
||||
export function formatFullDateNoDayNoTime(date: Date) {
|
||||
return (
|
||||
date.getFullYear() +
|
||||
"/" +
|
||||
pad(date.getMonth() + 1) +
|
||||
"/" +
|
||||
pad(date.getDate())
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user