From af6f794f229255a9c8de20529dfc91c21f3cc4b7 Mon Sep 17 00:00:00 2001 From: SARTHAK1SINGH Date: Thu, 3 Dec 2020 13:07:29 +0000 Subject: [PATCH 1/2] Event End time correction --- app/templates/components/ui-table/cell/cell-event-date.hbs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/components/ui-table/cell/cell-event-date.hbs b/app/templates/components/ui-table/cell/cell-event-date.hbs index 1d9e2b82ad2..bbe6604c135 100644 --- a/app/templates/components/ui-table/cell/cell-event-date.hbs +++ b/app/templates/components/ui-table/cell/cell-event-date.hbs @@ -1,11 +1,11 @@ {{#if this.record}} {{#if this.extraRecords.endsAt}}
- {{general-date this.record 'date-time-tz-short' tz=this.extraRecords.timezone}} + {{general-date this.record 'D MMM, YYYY h:mm A (z)' tz=this.extraRecords.timezone}}
(to)
- {{general-date this.record 'date-time-tz-short' tz=this.extraRecords.timezone}} + {{general-date this.extraRecords.endsAt 'D MMM, YYYY h:mm A (z)' tz=this.extraRecords.timezone}}
{{else}} From 74d87a96a382822b8c240aa24af47d1d5af1494e Mon Sep 17 00:00:00 2001 From: SARTHAK1SINGH Date: Thu, 3 Dec 2020 13:12:47 +0000 Subject: [PATCH 2/2] Events End time correction --- app/templates/components/ui-table/cell/cell-event-date.hbs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/components/ui-table/cell/cell-event-date.hbs b/app/templates/components/ui-table/cell/cell-event-date.hbs index bbe6604c135..16012a5d8c5 100644 --- a/app/templates/components/ui-table/cell/cell-event-date.hbs +++ b/app/templates/components/ui-table/cell/cell-event-date.hbs @@ -1,11 +1,11 @@ {{#if this.record}} {{#if this.extraRecords.endsAt}}
- {{general-date this.record 'D MMM, YYYY h:mm A (z)' tz=this.extraRecords.timezone}} + {{general-date this.record 'date-time-tz-short' tz=this.extraRecords.timezone}}
(to)
- {{general-date this.extraRecords.endsAt 'D MMM, YYYY h:mm A (z)' tz=this.extraRecords.timezone}} + {{general-date this.extraRecords.endsAt 'date-time-tz-short' tz=this.extraRecords.timezone}}
{{else}}