fix(Field): fix max-height not work (#3007)

fix #3002
This commit is contained in:
rex 2020-04-12 12:43:04 +08:00 committed by GitHub
parent e10a328f44
commit e6c97e1904
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,10 +5,10 @@ function inputStyle(autosize) {
if (autosize.constructor === 'Object') {
var style = '';
if (autosize.minHeight) {
style += 'min-height:' + utils.addUnit(autosize.minHeight);
style += 'min-height:' + utils.addUnit(autosize.minHeight) + ';';
}
if (autosize.maxHeight) {
style += 'min-height:' + utils.addUnit(autosize.maxHeight);
style += 'max-height:' + utils.addUnit(autosize.maxHeight) + ';';
}
return style;
}