Fix drag and drop link to composebox (#12055)

This commit is contained in:
Jeong Arm 2019-10-03 00:10:56 +09:00 committed by Eugen Rochko
parent ea8c781ec7
commit 3abe003f59
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ class UI extends React.PureComponent {
}
dataTransferIsText = (dataTransfer) => {
return (dataTransfer && Array.from(dataTransfer.types).includes('text/plain') && dataTransfer.items.length === 1);
return (dataTransfer && Array.from(dataTransfer.types).filter((type) => type === 'text/plain').length === 1);
}
closeUploadModal = () => {