"next month" doesn't need time fidelity

This commit is contained in:
Jeff Atwood 2017-05-18 23:29:37 -07:00
parent e93535e239
commit 387cad693e
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ export default Combobox.extend({
if (state.id === LATER_TODAY) {
time = time.format('h a');
} else if (state.id === NEXT_MONTH) {
time = time.format('MMM D, h a');
time = time.format('MMM D');
} else {
time = time.format('ddd, h a');
}