Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
Carry over selected VMs properly to Advanced Options step
Browse files Browse the repository at this point in the history
  • Loading branch information
mturley committed Sep 10, 2018
1 parent b42b07c commit 363e35d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const mapStateToProps = (
const allVms =
vm_choice_radio === 'vms_via_csv'
? [...planWizardVMStep.valid_vms, ...planWizardVMStep.invalid_vms, ...planWizardVMStep.conflict_vms]
: planWizardVMStep.valid_vms;
: [...planWizardVMStep.preselected_vms, ...planWizardVMStep.valid_vms];

return {
...planWizardAdvancedOptionsStep,
Expand Down

0 comments on commit 363e35d

Please sign in to comment.