diff options
| author | Shoubhit Dash <[email protected]> | 2026-03-20 20:14:18 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-03-20 14:44:18 +0000 |
| commit | 27a70ad70f30faf30d159f56b394c01f9474c7a4 (patch) | |
| tree | 3a7cf8fdcac21a78140494007d4b1b93b6746ae9 /packages/app/src/pages | |
| parent | 0bbf26a1ce54dc7fb79e2cb098ed593787f20125 (diff) | |
| download | opencode-27a70ad70f30faf30d159f56b394c01f9474c7a4.tar.gz opencode-27a70ad70f30faf30d159f56b394c01f9474c7a4.zip | |
fix(app): align review file comments with diff comments (#18406)
Diffstat (limited to 'packages/app/src/pages')
| -rw-r--r-- | packages/app/src/pages/session/file-tabs.tsx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/packages/app/src/pages/session/file-tabs.tsx b/packages/app/src/pages/session/file-tabs.tsx index a3379905d..e3b57fdf2 100644 --- a/packages/app/src/pages/session/file-tabs.tsx +++ b/packages/app/src/pages/session/file-tabs.tsx @@ -217,17 +217,6 @@ export function FileTabContent(props: { tab: string }) { onDelete={controls.remove} /> ), - onDraftPopoverFocusOut: (e: FocusEvent) => { - const current = e.currentTarget as HTMLDivElement - const target = e.relatedTarget - if (target instanceof Node && current.contains(target)) return - - setTimeout(() => { - if (!document.activeElement || !current.contains(document.activeElement)) { - setNote("commenting", null) - } - }, 0) - }, }) createEffect(() => { @@ -426,7 +415,6 @@ export function FileTabContent(props: { tab: string }) { commentsUi.onLineSelectionEnd(range) }} search={search} - overflow="scroll" class="select-text" media={{ mode: "auto", |
