Albums: Only pre-select manually manage albums in upload dialog #3644

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer 2023-08-21 10:44:54 +02:00
parent dc4eca6fd2
commit 51fc883459

View file

@ -176,7 +176,12 @@ export default {
this.dialog.upload = true;
},
showUpload() {
Event.publish("dialog.upload", {albums: [this.album]});
// Pre-select manually managed albums in upload dialog.
if(this.album.Type === "album") {
Event.publish("dialog.upload", {albums: [this.album]});
} else {
Event.publish("dialog.upload", {albums: []});
}
},
expand() {
this.searchExpanded = !this.searchExpanded;