Add move to destination functionality
This commit is contained in:
@@ -33,6 +33,9 @@
|
||||
.state-downloading {
|
||||
color: blue;
|
||||
}
|
||||
.state-moved {
|
||||
color: green;
|
||||
}
|
||||
.state-complete {
|
||||
color: green;
|
||||
}
|
||||
|
||||
@@ -101,6 +101,10 @@
|
||||
this.state = info.state;
|
||||
this.playlist_current = info.playlist_current;
|
||||
this.playlist_total = info.playlist_total;
|
||||
this.destination_chosen = null;
|
||||
if (info.destination) {
|
||||
this.destination_chosen = info.destination.name;
|
||||
}
|
||||
if (this.state != 'choose profile') {
|
||||
this.profile_chosen = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user