Procházet zdrojové kódy

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

Co-authored-by: LinYing <linying@momenta.ai>
ShadowJobs před 1 měsícem
rodič
revize
0587eb4956
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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 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)
     }
     }