chore: generate

This commit is contained in:
opencode-agent[bot] 2026-07-13 09:33:54 +00:00
commit 49028b6245
7 changed files with 11 additions and 18 deletions

View file

@ -782,7 +782,12 @@ body[data-new-layout]
border-bottom: none;
}
body[data-new-layout] #review-panel [data-component="tabs"] .session-review-v2-tabs-bar [data-slot="tabs-list"] > .sticky {
body[data-new-layout]
#review-panel
[data-component="tabs"]
.session-review-v2-tabs-bar
[data-slot="tabs-list"]
> .sticky {
padding-right: 0;
}

View file

@ -238,8 +238,7 @@ export function LineCommentEditorV2(props: LineCommentEditorV2Props) {
}
const nav = e.key === "ArrowUp" || e.key === "ArrowDown" || e.key === "Enter"
const ctrlNav =
e.ctrlKey && !e.metaKey && !e.altKey && !e.shiftKey && (e.key === "n" || e.key === "p")
const ctrlNav = e.ctrlKey && !e.metaKey && !e.altKey && !e.shiftKey && (e.key === "n" || e.key === "p")
if ((nav || ctrlNav) && mention.flat().length > 0) {
mention.onKeyDown(e)
e.preventDefault()