cat-qw-lib 0.22.3 → 0.22.4

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.
@@ -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;
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);