We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea720c9 commit b44c3e6Copy full SHA for b44c3e6
src/components/TeamManagement/MemberItem.jsx
@@ -22,6 +22,11 @@ const MemberItem = (props) => {
22
let timeZoneInfo
23
if(timeZone) {
24
timeZoneInfo = _.find(timezones, (t) => {return t.zoneName === timeZone})
25
+ // as a quick fix for https://github.com/appirio-tech/connect-app/issues/3457
26
+ // set offset for the "Daylight Saving Time"
27
+ if (timeZoneInfo.zoneName === 'America/New_York') {
28
+ timeZoneInfo.gmtOffset = -18000
29
+ }
30
localTime = moment().utcOffset(timeZoneInfo.gmtOffset/3600).format('h:mm a')
31
localTimeOffsetFormat = 'UTC' + moment().utcOffset(timeZoneInfo.gmtOffset/3600).format('Z')
32
}
0 commit comments