From f9f9b0ac20f7264b0c41512a8efa7c564cead45e Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 18 Dec 2018 14:39:24 -0800 Subject: [PATCH] fixed calendar date issue --- components/CalendarItem.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/components/CalendarItem.vue b/components/CalendarItem.vue index ec85715476..af11a6e903 100644 --- a/components/CalendarItem.vue +++ b/components/CalendarItem.vue @@ -40,7 +40,7 @@ export default { time() { if (this.start && 'date' in this.start) { return new Date(this.start.date).toLocaleString('en-US', { - timeZone: 'America/Los_Angeles', + timeZone: 'UTC', weekday: 'long', day: 'numeric', month: 'long', @@ -64,5 +64,4 @@ export default { }; - +