Browse Source

Pull request #3136: 无JIRA任务 bugfix

Merge in VISUAL/fineui from ~GUY/fineui:master to master

* commit 'a44e9be902dc021b1246106a2241b48e16355a11':
  bugfix
es6
guy-王川 2 years ago
parent
commit
949144f1b8
  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