intelica-library-components 1.1.176 → 1.1.177
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.
|
@@ -6311,7 +6311,7 @@ class DashboardQsComponent {
|
|
|
6311
6311
|
console.error('Error embedding dashboard:', error);
|
|
6312
6312
|
}
|
|
6313
6313
|
finally {
|
|
6314
|
-
this.isLoading.set(false);
|
|
6314
|
+
setTimeout(() => this.isLoading.set(false), 2000);
|
|
6315
6315
|
}
|
|
6316
6316
|
}
|
|
6317
6317
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: DashboardQsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -6360,7 +6360,7 @@ class DashboardQsInteractiveComponent {
|
|
|
6360
6360
|
return;
|
|
6361
6361
|
this.isLoading.set(true);
|
|
6362
6362
|
this.sharedService.setDashboardParameters(this.dashboardRef, params)
|
|
6363
|
-
.finally(() => this.isLoading.set(false));
|
|
6363
|
+
.finally(() => setTimeout(() => this.isLoading.set(false), 2000));
|
|
6364
6364
|
});
|
|
6365
6365
|
}
|
|
6366
6366
|
ngAfterViewInit() {
|
|
@@ -6378,7 +6378,7 @@ class DashboardQsInteractiveComponent {
|
|
|
6378
6378
|
console.error('Error embedding dashboard:', error);
|
|
6379
6379
|
}
|
|
6380
6380
|
finally {
|
|
6381
|
-
this.isLoading.set(false);
|
|
6381
|
+
setTimeout(() => this.isLoading.set(false), 2000);
|
|
6382
6382
|
}
|
|
6383
6383
|
}
|
|
6384
6384
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.23", ngImport: i0, type: DashboardQsInteractiveComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|