Shorten the default date/times shown
This commit is contained in:
parent
110fac1902
commit
db53f82a34
1 changed files with 2 additions and 2 deletions
|
@ -13,9 +13,9 @@ export class TimeDisplayComponent {
|
||||||
|
|
||||||
private getFormat(dateOnly: boolean): string {
|
private getFormat(dateOnly: boolean): string {
|
||||||
if (dateOnly) {
|
if (dateOnly) {
|
||||||
return 'dddd, MMMM Do YYYY';
|
return 'ddd, MMM Do YYYY';
|
||||||
}
|
}
|
||||||
|
|
||||||
return 'dddd, MMMM Do YYYY, h:mm A';
|
return 'ddd, MMM Do YYYY, h:mm A';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue