From ef2811f39a2a400d7cfefc7e4732059358570a04 Mon Sep 17 00:00:00 2001 From: Jeff Atwood Date: Thu, 18 May 2017 17:14:07 -0700 Subject: [PATCH] simplify time formats for set topic timer --- .../discourse/components/auto-update-input-selector.js.es6 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/discourse/components/auto-update-input-selector.js.es6 b/app/assets/javascripts/discourse/components/auto-update-input-selector.js.es6 index 583e1751aa..6df72a587a 100644 --- a/app/assets/javascripts/discourse/components/auto-update-input-selector.js.es6 +++ b/app/assets/javascripts/discourse/components/auto-update-input-selector.js.es6 @@ -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'); } }