cat-qw-lib 2.0.5 → 2.0.6

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.
@@ -2598,7 +2598,8 @@ class TableSecondaryComponent {
2598
2598
  .pipe(takeUntil(this.destroy$))
2599
2599
  .subscribe((res) => {
2600
2600
  const selectedQueue = this.allQueueList.filter((val) => val._id === res);
2601
- console.log(selectedQueue);
2601
+ this.isSelectAll = false;
2602
+ this.excludedApplicationIds = [];
2602
2603
  if (selectedQueue && selectedQueue.length > 0) {
2603
2604
  this.selectedQueueName = selectedQueue[0].name;
2604
2605
  }
@@ -2612,8 +2613,6 @@ class TableSecondaryComponent {
2612
2613
  this.updateRecordNumber();
2613
2614
  }
2614
2615
  ngOnDestroy() {
2615
- this.isSelectAll = false;
2616
- this.excludedApplicationIds = [];
2617
2616
  this.destroy$.next();
2618
2617
  this.destroy$.complete();
2619
2618
  }