From 965f1f6eae8d03743bf3c1db17ffbb2f314020bf Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Mon, 5 Dec 2022 16:59:49 -0600 Subject: [PATCH] Set min height of 100pix --- static/js/app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/static/js/app.js b/static/js/app.js index 91b33fe..af2e7cf 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -1274,6 +1274,8 @@ function checkInputSize() { } function resizeInput(height) { + if (height < 100) height = 100; + var diff = 50 + 12; // actions box + padding $("#input").height(height);