ps-toolkit-ui 1.20.78 → 1.20.80

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.
@@ -6371,7 +6371,7 @@
6371
6371
  }
6372
6372
  else {
6373
6373
  this.inp.value = op.value;
6374
- this.inp.options.filter(function (x) { return x.parent != null && x.parent.value === op.parent.value; }).forEach(function (x) { return x.selected = false; });
6374
+ this.inp.options.find(function (x) { return x.value === op.parent.value; }).options.forEach(function (x) { return x.selected = false; });
6375
6375
  op.selected = true;
6376
6376
  }
6377
6377
  };