From 122c78724f5e6bf074f1f9eeb73e68e357a25387 Mon Sep 17 00:00:00 2001 From: jmg2107 Date: Fri, 26 Aug 2016 16:08:17 -0700 Subject: [PATCH] (fix) Change timezone for calendar add to PST --- src/app/ui/calendarInput.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/ui/calendarInput.ts b/src/app/ui/calendarInput.ts index c13b14a..eb37265 100644 --- a/src/app/ui/calendarInput.ts +++ b/src/app/ui/calendarInput.ts @@ -72,7 +72,7 @@ export class CalendarInput { convertTime(datetime) { var newdate = datetime.replace(/ /i, 'T'); - newdate = newdate + '-07:00'; + newdate = newdate + '-00:00'; return newdate; } addEvent() {