Przeglądaj źródła

Claude: Fix chat scrolling on reopening the sidebar

Alessandro Pignotti 6 miesięcy temu
rodzic
commit
53fe95c6ac
1 zmienionych plików z 2 dodań i 0 usunięć
  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;