@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.
@@ -8706,7 +8706,12 @@
8706
8706
  newId.forEach(function (rc) {
8707
8707
  vv_1.push(rc[_this.valueField]);
8708
8708
  });
8709
- _this.selectedItems.push(_this.items.filter(function (c) { return vv_1.includes(c[_this.valueField]); })[0]);
8709
+ _this.items
8710
+ .filter(function (c) { return vv_1.includes(c[_this.valueField]); })
8711
+ .forEach(function (res) {
8712
+ _this.selectedItems.push(res);
8713
+ });
8714
+ // this.selectedItems.push(this.items.filter((c) => vv.includes(c[this.valueField])));
8710
8715
  _this.setSelectedItemsChange(_this.selectedItems);
8711
8716
  }
8712
8717
  // this.selectedItems = this.items.filter((c) => v.includes(c[this.valueField]));