From 220af3b276389cdb5ba8e0f6d564f82c528cfd7c Mon Sep 17 00:00:00 2001 From: Ozan Uslan <54141068+ozanuslan@users.noreply.github.com> Date: Thu, 6 Oct 2022 21:09:36 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fixed=20timezone=20issue=20with?= =?UTF-8?q?=20min/max=20dates=20in=20datetime=20picker?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes #15497 `'now'` option for min/max date used `moment()` function and did not consider the timezone of the site. --- ghost/admin/app/components/gh-date-time-picker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/admin/app/components/gh-date-time-picker.js b/ghost/admin/app/components/gh-date-time-picker.js index a1682bc2cf..927d4466fb 100644 --- a/ghost/admin/app/components/gh-date-time-picker.js +++ b/ghost/admin/app/components/gh-date-time-picker.js @@ -121,7 +121,7 @@ export default class GhDateTimePicker extends Component { // unless min/max date is at midnight moment will disable that day if (minDate === 'now') { - this.set('_minDate', moment(moment().format(DATE_FORMAT))); + this.set('_minDate', moment.tz(moment().tz(blogTimezone).format(DATE_FORMAT), blogTimezone)); } else if (!isBlank(minDate)) { this.set('_minDate', moment(moment(minDate).format(DATE_FORMAT))); } else { @@ -129,7 +129,7 @@ export default class GhDateTimePicker extends Component { } if (maxDate === 'now') { - this.set('_maxDate', moment(moment().format(DATE_FORMAT))); + this.set('_maxDate', moment.tz(moment().tz(blogTimezone).format(DATE_FORMAT), blogTimezone)); } else if (!isBlank(maxDate)) { this.set('_maxDate', moment(moment(maxDate).format(DATE_FORMAT))); } else {