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

Co-authored-by: LinYing <linying@momenta.ai>
pull/14262/head
ShadowJobs 1 year ago committed by Bharat Ramanathan
parent b5af9a57a0
commit 38adaeffc8

@ -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…
Cancel
Save