From 387cad693e8290011b51514be4ae96661f2501e1 Mon Sep 17 00:00:00 2001 From: Jeff Atwood Date: Thu, 18 May 2017 23:29:37 -0700 Subject: [PATCH] "next month" doesn't need time fidelity --- .../discourse/components/auto-update-input-selector.js.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 56faeb5b054..90436547bdd 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 @@ -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'); }