intelica-library-project 20.0.7 → 20.0.8

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.
@@ -2402,7 +2402,7 @@ class DashboardQsInteractiveComponent {
2402
2402
  return;
2403
2403
  this.isLoading.set(true);
2404
2404
  this.sharedService.setDashboardParameters(this.dashboardRef, params)
2405
- .finally(() => setTimeout(() => this.isLoading.set(false), 2000));
2405
+ .catch(() => this.isLoading.set(false));
2406
2406
  });
2407
2407
  }
2408
2408
  ngAfterViewInit() {
@@ -2418,7 +2418,7 @@ class DashboardQsInteractiveComponent {
2418
2418
  height: this.height() ?? `${window.innerHeight - 50}px`,
2419
2419
  onMessage: event => {
2420
2420
  dispatchQuicksightEvent(event, this);
2421
- if (event.eventName === QuicksightEventName.CONTENT_LOADED || event.eventName === QuicksightEventName.ERROR_OCCURRED)
2421
+ if (event.eventName === QuicksightEventName.CONTENT_LOADED || event.eventName === QuicksightEventName.ERROR_OCCURRED || event.eventName === QuicksightEventName.PARAMETERS_CHANGED)
2422
2422
  this.isLoading.set(false);
2423
2423
  },
2424
2424
  });