From 2b07291e17856a2b014537542f79cc8c059487c9 Mon Sep 17 00:00:00 2001 From: adamelmore <2363879+adamdottv@users.noreply.github.com> Date: Sun, 25 Jan 2026 07:58:24 -0600 Subject: fix(app): scroll to comment on click --- packages/app/src/components/prompt-input.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'packages/app/src/components') diff --git a/packages/app/src/components/prompt-input.tsx b/packages/app/src/components/prompt-input.tsx index ccff04efe..5ec0eb1ea 100644 --- a/packages/app/src/components/prompt-input.tsx +++ b/packages/app/src/components/prompt-input.tsx @@ -185,23 +185,26 @@ export const PromptInput: Component = (props) => { const openComment = (item: { path: string; commentID?: string; commentOrigin?: "review" | "file" }) => { if (!item.commentID) return - comments.setFocus({ file: item.path, id: item.commentID }) - comments.setActive({ file: item.path, id: item.commentID }) + const focus = { file: item.path, id: item.commentID } + comments.setActive(focus) view().reviewPanel.open() if (item.commentOrigin === "review") { tabs().open("review") + requestAnimationFrame(() => comments.setFocus(focus)) return } if (item.commentOrigin !== "file" && commentInReview(item.path)) { tabs().open("review") + requestAnimationFrame(() => comments.setFocus(focus)) return } const tab = files.tab(item.path) tabs().open(tab) files.load(item.path) + requestAnimationFrame(() => comments.setFocus(focus)) } const recent = createMemo(() => { -- cgit v1.2.3