Merge branch 'bugfix_message_logs' into for_webui

This commit is contained in:
Sakamoto Shiina
2024-12-23 19:22:37 +09:00

View File

@@ -14,7 +14,8 @@ export const LogBox = () => {
useLayoutEffect(() => { useLayoutEffect(() => {
store.log_box_ref = log_container_ref; store.log_box_ref = log_container_ref;
if (!is_scrolling) { if (!is_scrolling) {
scrollToBottom(store.log_box_ref, true); scrollToBottom(store.log_box_ref);
// scrollToBottom(store.log_box_ref, true); [Fix me]
} }
}, [currentMessageLogs.data]); }, [currentMessageLogs.data]);