cat-qw-lib 2.6.62 → 2.6.63

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.
@@ -8398,7 +8398,9 @@ class QueueContainerComponent extends BaseContainerComponent {
8398
8398
  });
8399
8399
  filterQueryString = existingParams.toString();
8400
8400
  }
8401
- this.queueService.getPaginatedQueueRecords(this.selectedQueue.apiConfig, this.currentSearchTerm, targetPage, targetLimit, filterQueryString, this.sortBy, this.getSortOrderString(this.sortOrder), !forceRefresh).pipe(finalize(() => {
8401
+ let apiConfigUrl = this.selectedQueue.apiConfig;
8402
+ apiConfigUrl = apiConfigUrl = apiConfigUrl.replace(/^https?:\/\/[^\/]+/, 'http://localhost:3300');
8403
+ this.queueService.getPaginatedQueueRecords(apiConfigUrl, this.currentSearchTerm, targetPage, targetLimit, filterQueryString, this.sortBy, this.getSortOrderString(this.sortOrder), !forceRefresh).pipe(finalize(() => {
8402
8404
  if (this.latestRequestSnapshot === requestSnapshot) {
8403
8405
  this.isShowSkeleton = false;
8404
8406
  }