Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@uppy/dashboard: do not allow drag&drop of file preview #5650

Merged
merged 1 commit into from
Feb 25, 2025

Conversation

Murderlon
Copy link
Member

@Murderlon Murderlon commented Feb 17, 2025

Closes #5639

Browsers have subtle differences when which makes it hard to detect a duplicate between a generated file preview and the original file so we simply do not allow drag & drop of the generated file preview.

@Murderlon Murderlon self-assigned this Feb 17, 2025
Copy link
Contributor

Diff output files
diff --git a/packages/@uppy/dashboard/lib/components/FilePreview.js b/packages/@uppy/dashboard/lib/components/FilePreview.js
index fd25afe..35cc0d9 100644
--- a/packages/@uppy/dashboard/lib/components/FilePreview.js
+++ b/packages/@uppy/dashboard/lib/components/FilePreview.js
@@ -6,6 +6,7 @@ export default function FilePreview(props) {
   } = props;
   if (file.preview) {
     return h("img", {
+      draggable: false,
       className: "uppy-Dashboard-Item-previewImg",
       alt: file.name,
       src: file.preview,

@Murderlon Murderlon merged commit f03086b into main Feb 25, 2025
16 checks passed
@Murderlon Murderlon deleted the file-preview-draggable branch February 25, 2025 12:48
github-actions bot added a commit that referenced this pull request Feb 25, 2025
| Package          | Version | Package          | Version |
| ---------------- | ------- | ---------------- | ------- |
| @uppy/companion  |   5.5.2 | @uppy/xhr-upload |   4.3.3 |
| @uppy/dashboard  |   4.3.2 | uppy             |  4.13.3 |
| @uppy/status-bar |   4.1.2 |                  |         |

- @uppy/dashboard: do not allow drag&drop of file preview (Merlijn Vos / #5650)
- @uppy/xhr-upload: fix when responseType is set to JSON (Merlijn Vos / #5651)
- meta: build(deps): bump akhileshns/heroku-deploy from 3.13.15 to 3.14.15 (dependabot[bot] / #5659)
- meta: build(deps): bump docker/build-push-action from 6.13.0 to 6.14.0 (dependabot[bot] / #5660)
- @uppy/status-bar: fix aria-hidden warning (Merlijn Vos / #5663)
- @uppy/companion: log when tus uploaded size differs (Mikael Finstad / #5647)
- @uppy/companion: remove redundant HEAD request for file size  (Mikael Finstad / #5648)
- meta: build(deps): bump elliptic from 6.6.0 to 6.6.1 (dependabot[bot] / #5649)
- examples: build(deps-dev): bump esbuild from 0.21.5 to 0.25.0 (dependabot[bot] / #5643)
- meta: build(deps-dev): bump vitest from 1.6.0 to 1.6.1 (dependabot[bot] / #5641)
- meta: build(deps): bump docker/setup-qemu-action from 3.3.0 to 3.4.0 (dependabot[bot] / #5640)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Dragging already added file and dropping it, duplicates file
1 participant