@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.
- package/esm2020/lib/smart-client/smart-component-api-client.mjs +4 -3
- package/fesm2015/smartbit4all-ng-client.mjs +3 -2
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +3 -2
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.182.tgz +0 -0
- package/smartbit4all-ng-client-3.3.181.tgz +0 -0
|
@@ -15512,10 +15512,11 @@ class SmartComponentApiClient {
|
|
|
15512
15512
|
}
|
|
15513
15513
|
async load() {
|
|
15514
15514
|
this.componentModelLoaded = false;
|
|
15515
|
-
|
|
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(
|
|
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);
|