Albums: Only pre-select manually manage albums in upload dialog #3644
Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
parent
dc4eca6fd2
commit
51fc883459
1 changed files with 6 additions and 1 deletions
|
@ -176,7 +176,12 @@ export default {
|
|||
this.dialog.upload = true;
|
||||
},
|
||||
showUpload() {
|
||||
// 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;
|
||||
|
|
Loading…
Reference in a new issue