From 7dd32423b65bbd4b5cde11217e1dff99239d79af Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Tue, 24 May 2022 10:41:38 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fixed=20inability=20to=20select?= =?UTF-8?q?=20a=20date=20in=20future=20months=20when=20scheduling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit no issue - selecting a date in a future month always selected the same day number in the current month, if that was in the past it would also reset to "in 5 minutes" - we were grabbing the day/month/year from the moment object provided by the calendar picker but we weren't using the correct property names, moment.js uses `months` and `years` instead of `month` and `year` --- .../app/components/editor-labs/publish-options/publish-at.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/admin/app/components/editor-labs/publish-options/publish-at.js b/ghost/admin/app/components/editor-labs/publish-options/publish-at.js index f1b64651e5..969caca757 100644 --- a/ghost/admin/app/components/editor-labs/publish-options/publish-at.js +++ b/ghost/admin/app/components/editor-labs/publish-options/publish-at.js @@ -9,9 +9,9 @@ export default class PublishAtOption extends Component { @action setDate(selectedDate) { const newDate = moment(this.args.publishOptions.scheduledAtUTC); - const {year, month, date} = moment(selectedDate).toObject(); + const {years, months, date} = moment(selectedDate).toObject(); - newDate.set({year, month, date}); + newDate.set({years, months, date}); this.args.publishOptions.setScheduledAt(newDate); }