diff --git a/src/fireedge/src/client/components/Forms/VmTemplate/InstantiateForm/Steps/index.js b/src/fireedge/src/client/components/Forms/VmTemplate/InstantiateForm/Steps/index.js index 214336bb8c..59c334e7aa 100644 --- a/src/fireedge/src/client/components/Forms/VmTemplate/InstantiateForm/Steps/index.js +++ b/src/fireedge/src/client/components/Forms/VmTemplate/InstantiateForm/Steps/index.js @@ -26,10 +26,13 @@ import { jsonToXml, userInputsToArray } from 'client/models/Helper' import { createSteps } from 'client/utils' const Steps = createSteps( - (vmTemplate) => { - const userInputs = userInputsToArray(vmTemplate?.TEMPLATE?.USER_INPUTS, { - order: vmTemplate?.TEMPLATE?.INPUTS_ORDER, - }) + (stepProps) => { + const userInputs = userInputsToArray( + stepProps?.dataTemplateExtended?.TEMPLATE?.USER_INPUTS, + { + order: stepProps?.dataTemplateExtended?.TEMPLATE?.INPUTS_ORDER, + } + ) return [ BasicConfiguration,