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); }