mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-05-02 17:07:13 +00:00
[FEAT] Improve autoscroll during message streaming (#1139)
emulate chatgpt autoscroll to not always force autoscroll when streaming responses
This commit is contained in:
parent
897e168fd1
commit
b50f1e7479
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ export default function ChatHistory({ history = [], workspace, sendCommand }) {
|
|||
const chatHistoryRef = useRef(null);
|
||||
|
||||
useEffect(() => {
|
||||
scrollToBottom();
|
||||
if (isAtBottom) scrollToBottom();
|
||||
}, [history]);
|
||||
|
||||
const handleScroll = () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue