intelica-library-components 1.1.162 → 1.1.163
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.
|
@@ -6292,7 +6292,6 @@ class DashboardQsInteractiveComponent {
|
|
|
6292
6292
|
});
|
|
6293
6293
|
effect(() => {
|
|
6294
6294
|
const id = this.dashboardId();
|
|
6295
|
-
console.log('🟢 firstEmbed effect', { id, viewReady: this.viewReady(), lastEmbeddedId: this.lastEmbeddedId });
|
|
6296
6295
|
if (!this.viewReady() || !id)
|
|
6297
6296
|
return;
|
|
6298
6297
|
if (id === this.lastEmbeddedId)
|
|
@@ -6302,12 +6301,11 @@ class DashboardQsInteractiveComponent {
|
|
|
6302
6301
|
});
|
|
6303
6302
|
effect(() => {
|
|
6304
6303
|
const params = this.parameters();
|
|
6305
|
-
console.log('🟠 params effect', { params, hasRef: !!this.dashboardRef });
|
|
6306
6304
|
if (!this.dashboardRef || !params)
|
|
6307
6305
|
return;
|
|
6306
|
+
this.isLoading.set(true);
|
|
6308
6307
|
this.sharedService.setDashboardParameters(this.dashboardRef, params)
|
|
6309
|
-
.
|
|
6310
|
-
.catch(e => console.error('🟠 setParameters ERR', e));
|
|
6308
|
+
.finally(() => this.isLoading.set(false));
|
|
6311
6309
|
});
|
|
6312
6310
|
}
|
|
6313
6311
|
ngAfterViewInit() {
|