소스 검색

FIX:microsoft word text copy and paste error (#14905)

Co-authored-by: LinYing <linying@momenta.ai>
tags/1.1.0
ShadowJobs 7 달 전
부모
커밋
0587eb4956
No account linked to committer's email address
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2
    1
      web/app/components/base/file-uploader/hooks.ts

+ 2
- 1
web/app/components/base/file-uploader/hooks.ts 파일 보기

@@ -310,7 +310,8 @@ export const useFile = (fileConfig: FileUpload) => {

const handleClipboardPasteFile = useCallback((e: ClipboardEvent<HTMLTextAreaElement>) => {
const file = e.clipboardData?.files[0]
if (file) {
const text = e.clipboardData?.getData('text/plain')
if (file && !text) {
e.preventDefault()
handleLocalFileUpload(file)
}

Loading…
취소
저장