diff --git a/src/js/logger-ui.js b/src/js/logger-ui.js index 8424f51d9..8c5016f57 100644 --- a/src/js/logger-ui.js +++ b/src/js/logger-ui.js @@ -2787,7 +2787,7 @@ logger.resize = (function() { const crect = elem.getBoundingClientRect(); const dh = crect.bottom - vrect.bottom; if ( dh === 0 ) { continue; } - elem.style.height = (crect.height - dh) + 'px'; + elem.style.height = Math.ceil(crect.height - dh) + 'px'; } };