@smartbit4all/ng-client 3.3.181 → 3.3.182

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.
@@ -15512,10 +15512,11 @@ class SmartComponentApiClient {
15512
15512
  }
15513
15513
  async load() {
15514
15514
  this.componentModelLoaded = false;
15515
- this.uuid = this.viewContext.getUuidOfPage(this.pageName);
15515
+ const uuid = this.viewContext.getUuidOfPage(this.pageName);
15516
15516
  // this.model = await this.viewContext.load(this.uuid);
15517
- const change = await this.viewContext.load2(this.uuid);
15517
+ const change = await this.viewContext.load2(uuid);
15518
15518
  this.componentModelLoaded = true;
15519
+ this.uuid = uuid;
15519
15520
  this.model = change.result;
15520
15521
  if (this.model.widgets) {
15521
15522
  this.handleChangeWidgets(this.model.widgets);