소스 검색

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

Yihui Khuu 6 달 전
부모
커밋
34328828ae
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      packages/ui/src/components/line-comment.tsx

+ 1 - 0
packages/ui/src/components/line-comment.tsx

@@ -244,6 +244,7 @@ export const LineCommentEditor = (props: LineCommentEditorProps) => {
             event.stopPropagation()
             if (e.key === "Escape") {
               event.preventDefault()
+              e.currentTarget.blur()
               split.onCancel()
               return
             }