浏览代码

Claude: Fix chat scrolling on reopening the sidebar

Alessandro Pignotti 6 月之前
父节点
当前提交
53fe95c6ac
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      src/lib/AnthropicTab.svelte

+ 2 - 0
src/lib/AnthropicTab.svelte

@@ -26,6 +26,8 @@
 	}
 	function scrollMessage(node, messageList)
 	{
+		// Make sure the messages are always scrolled to the bottom
+		node.scrollTop = node.scrollHeight;
 		return {
 			update(messageList) {
 				node.scrollTop = node.scrollHeight;