osl-base-extended 1.0.26 → 1.0.27

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.
@@ -1432,8 +1432,8 @@ class OslAutocomplete extends baseComponent {
1432
1432
  const res = await this.service[this.methodName](value);
1433
1433
  if (!res.isSuccessful)
1434
1434
  return;
1435
- this.datasource = res.result;
1436
- this.filteredItems = res.result;
1435
+ this.datasource = res.result?.data;
1436
+ this.filteredItems = res.result?.data;
1437
1437
  this.cdr.markForCheck();
1438
1438
  });
1439
1439
  if (this.object) {