From 363e35d98668b2e61171b92bdf87dd08615c2e01 Mon Sep 17 00:00:00 2001 From: Mike Turley Date: Mon, 10 Sep 2018 11:28:51 -0400 Subject: [PATCH] Carry over selected VMs properly to Advanced Options step --- .../components/PlanWizardAdvancedOptionsStep/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/react/screens/App/Overview/screens/PlanWizard/components/PlanWizardAdvancedOptionsStep/index.js b/app/javascript/react/screens/App/Overview/screens/PlanWizard/components/PlanWizardAdvancedOptionsStep/index.js index 5e2b850294..45f6f964f6 100644 --- a/app/javascript/react/screens/App/Overview/screens/PlanWizard/components/PlanWizardAdvancedOptionsStep/index.js +++ b/app/javascript/react/screens/App/Overview/screens/PlanWizard/components/PlanWizardAdvancedOptionsStep/index.js @@ -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,