Bläddra i källkod

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

Co-authored-by: LinYing <linying@momenta.ai>
tags/1.1.0
ShadowJobs 7 månader sedan
förälder
incheckning
0587eb4956
Inget konto är kopplat till bidragsgivarens mejladress
1 ändrade filer med 2 tillägg och 1 borttagningar
  1. 2
    1
      web/app/components/base/file-uploader/hooks.ts

+ 2
- 1
web/app/components/base/file-uploader/hooks.ts Visa fil

@@ -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)
}

Laddar…
Avbryt
Spara