@chapeaux/cpx-user
Advanced tools
Comparing version 0.7.1 to 0.7.2
@@ -107,3 +107,2 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
}); | ||
this.dispatchEDDL(); | ||
} | ||
@@ -157,2 +156,3 @@ this.ready = true; | ||
} | ||
this.dispatchEDDL(); | ||
break; | ||
@@ -164,3 +164,6 @@ } | ||
return __awaiter(this, void 0, void 0, function* () { | ||
const hashedEmail = yield this.generateHash(this.user['email']); | ||
let hashedEmail = ''; | ||
if (typeof this.user['email'] !== 'undefined' && this.user['email'].length && this.user['email'].length > 0) { | ||
hashedEmail = yield this.generateHash(this.user['email']); | ||
} | ||
this.dispatchEvent(new CustomEvent("eddl-user-ready", { | ||
@@ -167,0 +170,0 @@ detail: { |
{ | ||
"name": "@chapeaux/cpx-user", | ||
"version": "0.7.1", | ||
"version": "0.7.2", | ||
"description": "Chapeaux User Component", | ||
@@ -5,0 +5,0 @@ "type": "module", |
48501
270