Set min height of 100pix

This commit is contained in:
Dan Sosedoff
2022-12-05 16:59:49 -06:00
parent 9b086365d0
commit 965f1f6eae

View File

@@ -1274,6 +1274,8 @@ function checkInputSize() {
}
function resizeInput(height) {
if (height < 100) height = 100;
var diff = 50 + 12; // actions box + padding
$("#input").height(height);