cat-qw-lib 0.23.0 → 0.23.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
|
@@ -751,7 +751,7 @@ class ListService {
|
|
|
751
751
|
if (model.dataSource) {
|
|
752
752
|
try {
|
|
753
753
|
const response = await firstValueFrom(this.getbyPathName(model.dataSource));
|
|
754
|
-
const listData = response.data;
|
|
754
|
+
const listData = response.data || response;
|
|
755
755
|
const list = new List(model.dataSource, listData, model.listLabelProperty, model.listValueProperty, model.dataSource);
|
|
756
756
|
list.forProperty = model.name;
|
|
757
757
|
lists.push(list);
|
|
@@ -1693,7 +1693,7 @@ class LISTCONFIG {
|
|
|
1693
1693
|
};
|
|
1694
1694
|
}
|
|
1695
1695
|
static APICONFIG = [
|
|
1696
|
-
LISTCONFIG.createConfig("
|
|
1696
|
+
LISTCONFIG.createConfig("parentapiConfigId", "api-configurations")
|
|
1697
1697
|
];
|
|
1698
1698
|
static QUEUECONFIG = [
|
|
1699
1699
|
LISTCONFIG.createConfig("queueID", "queues")
|