From e9197a6b6693e2b334c62538485cff4df2ad1ed5 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 9 Sep 2026 19:54:24 +0300 Subject: [PATCH] fix --- src/components/conversation/conversation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js index ac5f4c77c..1fed4c458 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -83,7 +83,7 @@ export default { } setFocused(id) const target = document.querySelector(`.Status[data-status-id=${id}]`) - return await scroller.scrollIntoView(target, { block: 'center' }) + return await scroller.scrollIntoView(target, { block: 'start' }) } const { statusId } = toRefs(props)