@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.
@@ -474,12 +474,15 @@ class Sidebar {
474
474
  window.location.href = `${myconfig.AuthUrl}/logout?client=${myconfig.Client}`;
475
475
  }
476
476
  getUserProfileData() {
477
- var identity = this.sr.getJaceIdentity();
478
- if (identity) {
479
- this.user = identity.FullName;
480
- this.tenant = identity.TenantName;
481
- this.profile.doReloadProfilePicture();
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;