From a80262c0d4574ba4404bf45e56434f8b96b2bc59 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Sun, 6 Jul 2025 22:18:28 +0200 Subject: [PATCH] Solved container height bug --- app/static/js/container.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/static/js/container.js b/app/static/js/container.js index 86270f5..4a975a7 100644 --- a/app/static/js/container.js +++ b/app/static/js/container.js @@ -17,7 +17,7 @@ function adjustScrollContainerHeight() { // Calculate the available height for the scroll area const availableHeight = window.innerHeight - siblingsHeight; - scrollContainer.style.maxHeight = availableHeight + 'px'; + scrollContainer.style.height = availableHeight + 'px'; scrollContainer.style.overflowY = 'auto'; scrollContainer.style.overflowX = 'hidden';