Open
Description
In my case, I have acceptedFiles set to '.json' in the dropzoneOptions but I can still manually add a file by doing:
const myfile = new File([{}], 'test.txt', {type:'text/plain'})
$vm0.$refs.projectDropzone.manuallyAddFile(myfile)
I'm not sure if a user could ever do this, but I've been trying to write tests for my component by adding a file manually and this makes it impossible to check whether it triggers an error when adding an incorrect file type.