You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the "click to upload" feature, the on:filedrop event doesn't fire when you attempt to upload the same file a second time. This appears to be a fairly well-known behavior of the <input type="file"> component:
click on the dropzone and select a file -- notice that the console message is printed.
click on dropzone again and select the same file -- notice that the console message is not printed this time.
click on dropzone and select a different file -- notice that the message is printed
In my app, I have added a timeout to my onDrop() which clears the field between clicks, which fixes the problem.
I'm sure there is a more elegant solution.
When using the "click to upload" feature, the
on:filedrop
event doesn't fire when you attempt to upload the same file a second time. This appears to be a fairly well-known behavior of the<input type="file">
component:Repro case should be something like the following:
Run the above then:
In my app, I have added a timeout to my
onDrop()
which clears the field between clicks, which fixes the problem.I'm sure there is a more elegant solution.
The text was updated successfully, but these errors were encountered: