Browse Source

Merge pull request #200566 in DEC/fineui from master to feature/x

* commit '949144f1b8049d1c3c05bf46ca12bf5312b255ae':
  bugfix
master
superman 2 years ago
parent
commit
da1fa86742
  1. 2
      src/widget/multiselect/loader.js

2
src/widget/multiselect/loader.js

@ -167,7 +167,7 @@ BI.MultiSelectInnerLoader = BI.inherit(BI.Widget, {
}]);
return false;
}
this.options.items = (items || []).slice(0, (items || []).length % 100);
this.options.items = (items || []).slice(0, 100 + (items || []).length % 100);
this.times = 1;
this.count = 0;
this.count += items.length;

Loading…
Cancel
Save