@esfaenza/core 15.2.180-beta1 → 15.2.180-beta2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/components/sidebar/sidebar.component.mjs +4 -3
- package/esm2020/lib/app.component.mjs +2 -2
- package/fesm2015/esfaenza-core-components.mjs +9 -6
- package/fesm2015/esfaenza-core-components.mjs.map +1 -1
- package/fesm2015/esfaenza-core.mjs +2 -2
- package/fesm2015/esfaenza-core.mjs.map +1 -1
- package/fesm2020/esfaenza-core-components.mjs +3 -2
- package/fesm2020/esfaenza-core-components.mjs.map +1 -1
- package/fesm2020/esfaenza-core.mjs +2 -2
- package/fesm2020/esfaenza-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -474,12 +474,15 @@ class Sidebar {
|
|
|
474
474
|
window.location.href = `${myconfig.AuthUrl}/logout?client=${myconfig.Client}`;
|
|
475
475
|
}
|
|
476
476
|
getUserProfileData() {
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
477
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
478
|
+
var identity = this.sr.getJaceIdentity();
|
|
479
|
+
if (identity) {
|
|
480
|
+
this.user = identity.FullName;
|
|
481
|
+
this.tenant = identity.TenantName;
|
|
482
|
+
yield this.profile.doReloadProfilePicture();
|
|
483
|
+
this.cdr.markForCheck();
|
|
484
|
+
}
|
|
485
|
+
});
|
|
483
486
|
}
|
|
484
487
|
onSearchRequest() {
|
|
485
488
|
this.searchingTerm = true;
|