inviton-powerduck 0.0.144 → 0.0.145
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.
|
@@ -486,8 +486,8 @@ export default function FilterableSelect(this: any, args: FilterableSelectArgs):
|
|
|
486
486
|
const selArr = $(contextBody).find('.fdd-selected');
|
|
487
487
|
const exlusivity = ($('.fdd-incl-excl-chb input').prop('checked') == true ? 1 : 0);
|
|
488
488
|
|
|
489
|
-
selArr.each(() => {
|
|
490
|
-
const item = this.getDataFromElement($(
|
|
489
|
+
selArr.each((i, el) => {
|
|
490
|
+
const item = this.getDataFromElement($(el));
|
|
491
491
|
if (item != null) {
|
|
492
492
|
retArr.push(item);
|
|
493
493
|
}
|