[web] Directly import into the selected album on drag and drop

Ref: https://github.com/ente-io/ente/discussions/2707#discussioncomment-10589669
This commit is contained in:
Manav Rathi
2024-09-10 10:56:15 +05:30
parent e77d7a42f5
commit 71ee7ac019
2 changed files with 3 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
## v1.7.5 (Unreleased)
- Directly upload to selected album on drag and drop.
- .
## v1.7.4

View File

@@ -292,6 +292,7 @@ export default function Uploader({
}
let files: File[];
isDragAndDrop.current = false;
switch (pickedUploadType.current) {
case PICKED_UPLOAD_TYPE.FILES:
@@ -307,6 +308,7 @@ export default function Uploader({
break;
default:
isDragAndDrop.current = true;
files = dragAndDropFiles;
break;
}