From c4784dbc851819becb627db70d6f56315d4b80c7 Mon Sep 17 00:00:00 2001 From: Jon Penwood Date: Tue, 14 Sep 2021 12:38:31 -0600 Subject: [PATCH] Updated moment-formatter timezone --- components/ldap-summary.js | 3 +++ package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/components/ldap-summary.js b/components/ldap-summary.js index 4d0ffa8..ae1fdc4 100644 --- a/components/ldap-summary.js +++ b/components/ldap-summary.js @@ -1,5 +1,8 @@ polarity.export = PolarityComponent.extend({ details: Ember.computed.alias('block.data.details'), + timezone: Ember.computed("Intl", function () { + return Intl.DateTimeFormat().resolvedOptions().timeZone; + }), summaryAttributes: Ember.computed('block.data.details.userOptions', function() { const summaryUserAttributes = this.get( diff --git a/package.json b/package.json index 31004f4..c51cbd4 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "main": "./integration.js", "name": "LDAP", "description": "Polarity LDAP Integration", - "version": "3.5.0-beta", + "version": "3.5.1-beta", "license": "MIT", "author": "Polarity", "private": true,