Fix scrolling issue for long chats (#119)

This commit is contained in:
Thorsten Sommer 2024-09-05 19:37:54 +02:00 committed by GitHub
parent 4216a29325
commit 6fbf32d8a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -24,5 +24,5 @@ window.clearDiv = function (divName) {
}
window.scrollToBottom = function(element) {
element.scrollIntoView();
element.scrollIntoView({ behavior: 'smooth', block: 'end', inline: 'nearest' });
}

View File

@ -0,0 +1,2 @@
# v0.9.3, build 178 (2024-09-0X xx:xx UTC)
- Fixed the scrolling issue for long chat histories.