Shorten the default date/times shown

This commit is contained in:
Joseph Schorr 2017-11-27 13:19:26 +02:00
parent 110fac1902
commit db53f82a34

View file

@ -13,9 +13,9 @@ export class TimeDisplayComponent {
private getFormat(dateOnly: boolean): string {
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';
}
}