UI: Fix autoscroll not engaging when regenerating short chats

This commit is contained in:
oobabooga 2026-03-14 18:51:12 -07:00
parent d1aba08561
commit 9955e54a1f

View file

@ -157,7 +157,7 @@ let lastClientHeight = 0;
targetElement.addEventListener("scroll", function() {
let diff = targetElement.scrollHeight - targetElement.clientHeight;
let isAtBottomNow = Math.abs(targetElement.scrollTop - diff) <= 10 || diff == 0;
let isAtBottomNow = Math.abs(targetElement.scrollTop - diff) <= 10 || diff <= 0;
// Add scrolling class to disable hover effects
if (window.isScrolled || !isAtBottomNow) {