isDragReject true for accepted file extension
See original GitHub issueI have seen this work appropriately when setting the MIME type but has not been working when setting the file extension. I want to set a more specific extension, but for the sake of the bug I have been seeing .png
being rejected when choosing to accept .png
files. The hidden input is working as expected, but the hover and subsequent event is not working as expected.
React dev tools showing current accept:
Screenshot of rejection:
I apologize if I’ve missed something. I’m looking back at your attr-accept project to trace it back.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:2
- Comments:24
Top Results From Across the Web
react-dropzone: isDragReject is true when accept csv?
When dragging a csv file, this code logs "true, false, true". But react-dropzone accepted the csv file. I tried with images and all...
Read more >Accepting specific file types - react-dropzone
The value must be an object with a common MIME type as keys and an array of file extensions as values (similar to...
Read more >react-dropzone
Files are accepted or rejected based on the accept , multiple , minSize and maxSize props. accept must be a valid MIME type...
Read more >React Dropzone and File Uploads in React - Upmostly
{isDragReject && "File type not accepted, sorry! ... In a real world file uploader, you wouldn't want one of your users dragging in...
Read more >Use React Dropzone to Create a Drag-n-Drop Zone for Files
isDragRegect — boolean, true if a file is dragged over the dropzone area and not included in acceptable file types. Create the dropzone ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This however doesn’t fix the problem for files with unspecified MIME types. Any hints on how to handle that case?
Any chance this issue can be reopened, so no new ones need be created?
@lruckman thx, for those coming here from Google try this
accept=".csv,text/csv"