mirror of
https://github.com/OpenNebula/one.git
synced 2025-03-21 14:50:08 +03:00
F OpenNebula#6392: User inputs not appears on vm instantiate (#2842)
This commit is contained in:
parent
dfbc4ebadb
commit
f94e225a6c
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user