DioxusLabs / dioxus

Fullstack GUI library for web, desktop, mobile, and more.
https://dioxuslabs.com
Apache License 2.0
18.49k stars 703 forks source link

Fix desktop drag events that don't have associated files #2358

Closed ealmloff closed 1 week ago

ealmloff commented 1 week ago

This fixes desktop drag events that don't have associated files. We were previously always attaching a files placeholder in JS and replacing that files placeholder with the last dropped file in our desktop code. This PR changes the javascript code to only attach a placeholder if there was a file associated with the web event

Fixes #2328