fix(app): fix issue with scroll jumping when pressing escape in comment text area (#15374)

This commit is contained in:
Yihui Khuu
2026-03-09 15:29:24 +05:30
committed by GitHub
parent 18fb19da3b
commit 34328828ae
@@ -244,6 +244,7 @@ export const LineCommentEditor = (props: LineCommentEditorProps) => {
event.stopPropagation() event.stopPropagation()
if (e.key === "Escape") { if (e.key === "Escape") {
event.preventDefault() event.preventDefault()
e.currentTarget.blur()
split.onCancel() split.onCancel()
return return
} }