fix: scroll on branch change w/ multi response chat

This commit is contained in:
Timothy Jaeryang Baek 2025-04-19 04:09:46 -07:00
parent 463d7fb628
commit 48637893b1
3 changed files with 14 additions and 11 deletions

View File

@ -236,10 +236,12 @@
await tick();
await tick();
if ($settings?.scrollOnBranchChange ?? true) {
const messageElement = document.getElementById(`message-${message.id}`);
if (messageElement) {
messageElement.scrollIntoView({ behavior: 'smooth' });
}
}
await tick();
saveChatHandler(_chatId, history);

View File

@ -200,10 +200,12 @@
await initHandler();
await tick();
if ($settings?.scrollOnBranchChange ?? true) {
const messageElement = document.getElementById(`message-${messageId}`);
if (messageElement) {
messageElement.scrollIntoView({ block: 'start' });
}
}
});
</script>
@ -238,10 +240,9 @@
messageChildrenIds = history.messages[currentMessageId].childrenIds;
}
history.currentId = currentMessageId;
await tick();
await updateChat();
triggerScroll();
// await tick();
// await updateChat();
// triggerScroll();
}
}}
>

View File

@ -855,7 +855,7 @@
<div>
<div class=" py-0.5 flex w-full justify-between">
<div class=" self-center text-xs">
{$i18n.t('Scroll to bottom when switching between branches')}
{$i18n.t('Scroll On Branch Change')}
</div>
<button