Browse Source

Pull request #2175: 无JIRA任务 bugfix

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

* commit '6441056e16a8097ee110c4c1c950df0af5a36658':
  bugfix
es6
guy 3 years ago
parent
commit
b7d9ce8197
  1. 2
      src/base/combination/combo.js

2
src/base/combination/combo.js

@ -342,7 +342,7 @@
var maxW = this.element.outerWidth() || o.width;
// BI-93885 最大列宽算法调整
if (maxW < 500) {
if (width > 500) {
if (width >= 500) {
maxW = 500;
} else if(width > maxW) {
// 防止小数导致差那么一点

Loading…
Cancel
Save