1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

B #5840: Fix HCI empty inputs (#2075)

This commit is contained in:
Sergio Betanzos 2022-05-24 18:50:53 +02:00 committed by GitHub
parent 3753967d73
commit 627a95bbd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,7 @@ const Steps = createSteps([Template, Provider, BasicConfiguration, Inputs], {
const resolvedInputs = provisionTemplateSelected?.inputs?.map((input) => ({
...input,
value: `${inputs[input?.name]}`,
value: `${inputs[input?.name] ?? ';'}`,
}))
return {