Skip to content

Commit

Permalink
Closes #1066 and #1018
Browse files Browse the repository at this point in the history
  • Loading branch information
Spurs20 committed Feb 3, 2022
1 parent 4fb37ee commit 626894b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion web-server/plugins/slycat-video-swarm/js/vs-wizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ component.reauth = function() {
$(".remote-browser-continue").toggleClass("disabled", false);

// note that table has been uploaded
remote_table_uploaded = true;
remote_table_uploaded = false;

// update movie links part of model, go to tab 5
upload_media_columns(5);
Expand Down Expand Up @@ -1033,6 +1033,11 @@ component.reauth = function() {
target = target - 4;
}

// Reset the media columns so user can select a new file
if (component.tab() === 5) {
component.vs_media_columns = ko.observableArray([]);
}

target--;
component.tab(target);
};
Expand Down

0 comments on commit 626894b

Please sign in to comment.