Browse Source

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

* commit '54bf0aef9137c90a35dccaefa2bbd7bc90ade5c7':
  JSY-25808 fix: fineui-复选下拉框bug
master
superman 2 years ago
parent
commit
7acbee7a4a
  1. 2
      src/case/combo/textvaluecombo/combo.textvalue.js

2
src/case/combo/textvaluecombo/combo.textvalue.js

@ -144,7 +144,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, {
el: popup, el: popup,
value: o.value, value: o.value,
maxHeight: 240, maxHeight: 240,
minHeight: 60 minHeight: (o.chooseType === BI.ButtonGroup.CHOOSE_TYPE_MULTI && o.allowSelectAll) ? 55 : 25
} }
}; };
}, },

Loading…
Cancel
Save