simplify time formats for set topic timer

This commit is contained in:
Jeff Atwood 2017-05-18 17:14:07 -07:00
parent 5e88794a65
commit ef2811f39a
1 changed files with 2 additions and 2 deletions

View File

@ -110,9 +110,9 @@ export default Combobox.extend({
if (time) {
if (state.id === LATER_TODAY) {
time = time.format('hh:mm a');
time = time.format('h a');
} else {
time = time.format('ddd, hh:mm a');
time = time.format('ddd, h a');
}
}