Browse Source

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

Co-authored-by: LinYing <linying@momenta.ai>
tags/1.1.0
ShadowJobs 7 months ago
parent
commit
0587eb4956
No account linked to committer's email address
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      web/app/components/base/file-uploader/hooks.ts

+ 2
- 1
web/app/components/base/file-uploader/hooks.ts View File



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

Loading…
Cancel
Save