osl-base-extended 1.0.40 → 1.0.41

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.
@@ -1389,10 +1389,10 @@ class OslAutocomplete extends baseComponent {
1389
1389
  set object(val) {
1390
1390
  if (val) {
1391
1391
  this._object = val;
1392
- this.datasource = [val];
1393
- this.filteredItems = [...this.datasource];
1394
1392
  }
1395
1393
  if (this.model) {
1394
+ this.datasource = [val];
1395
+ this.filteredItems = [...this.datasource];
1396
1396
  this.syncInputFromModel();
1397
1397
  }
1398
1398
  }