@acorex/components 1.3.86 → 1.3.87

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.
@@ -8500,7 +8500,12 @@ var AXSelectBoxComponent = /** @class */ (function (_super) {
8500
8500
  newId.forEach(function (rc) {
8501
8501
  vv_1.push(rc[_this.valueField]);
8502
8502
  });
8503
- _this.selectedItems.push(_this.items.filter(function (c) { return vv_1.includes(c[_this.valueField]); })[0]);
8503
+ _this.items
8504
+ .filter(function (c) { return vv_1.includes(c[_this.valueField]); })
8505
+ .forEach(function (res) {
8506
+ _this.selectedItems.push(res);
8507
+ });
8508
+ // this.selectedItems.push(this.items.filter((c) => vv.includes(c[this.valueField])));
8504
8509
  _this.setSelectedItemsChange(_this.selectedItems);
8505
8510
  }
8506
8511
  // this.selectedItems = this.items.filter((c) => v.includes(c[this.valueField]));