Fix Bug 58113

This commit is contained in:
Julia Radzhabova
2022-07-14 22:39:32 +03:00
parent 9f9b75f227
commit f817e0d722
8 changed files with 17 additions and 17 deletions

View File

@ -241,7 +241,7 @@ define([
function _autoSize() {
if (this.initConfig.height == 'auto') {
var height = parseInt(this.$window.find('> .body').css('height'));
var height = Math.ceil(parseFloat(this.$window.find('> .body').css('height')));
this.initConfig.header && (height += parseInt(this.$window.find('> .header').css('height')));
this.$window.height(height);
}