cat-qw-lib 2.0.0 → 2.0.2
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.
package/fesm2022/cat-qw-lib.mjs
CHANGED
|
@@ -528,7 +528,7 @@ let BaseStore = class BaseStore extends EntityStore {
|
|
|
528
528
|
alertMessage$;
|
|
529
529
|
queueList$;
|
|
530
530
|
constructor() {
|
|
531
|
-
super({ records: [], lists: [], attributeModelList: [], isFormSubmitted: SHARED.EMPTY, isApiValidated: null, selectedTemplate: SHARED.EMPTY, updatedData: null, isAllRowSelected: false }, { name: BaseStore_1.storeName });
|
|
531
|
+
super({ records: [], lists: [], attributeModelList: [], isFormSubmitted: SHARED.EMPTY, isApiValidated: null, selectedTemplate: SHARED.EMPTY, updatedData: null, isAllRowSelected: false, isExcludedApplicationIds: [], selectedQueueId: SHARED.EMPTY }, { name: BaseStore_1.storeName });
|
|
532
532
|
this.recordChange$ = new BehaviorSubject([]);
|
|
533
533
|
this.onDocumentAccept$ = new BehaviorSubject({});
|
|
534
534
|
this.onDailogClose$ = new BehaviorSubject(false);
|
|
@@ -2601,7 +2601,7 @@ class TableSecondaryComponent {
|
|
|
2601
2601
|
const selectedQueue = this.allQueueList.filter((val) => val._id === res);
|
|
2602
2602
|
console.log(selectedQueue);
|
|
2603
2603
|
if (selectedQueue) {
|
|
2604
|
-
this.selectedQueueName = selectedQueue.name;
|
|
2604
|
+
this.selectedQueueName = selectedQueue[0].name;
|
|
2605
2605
|
}
|
|
2606
2606
|
});
|
|
2607
2607
|
}
|