0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

🐛 Fixed inability to select a date in future months when scheduling

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`
This commit is contained in:
Kevin Ansfield 2022-05-24 10:41:38 +01:00
parent 446ab3a9d8
commit 7dd32423b6

View file

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