From 627a95bbd239c753bd930f694f7f70d7bc8a480c Mon Sep 17 00:00:00 2001 From: Sergio Betanzos Date: Tue, 24 May 2022 18:50:53 +0200 Subject: [PATCH] B #5840: Fix HCI empty inputs (#2075) --- .../client/components/Forms/Provision/CreateForm/Steps/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fireedge/src/client/components/Forms/Provision/CreateForm/Steps/index.js b/src/fireedge/src/client/components/Forms/Provision/CreateForm/Steps/index.js index 446f961340..4df8f33341 100644 --- a/src/fireedge/src/client/components/Forms/Provision/CreateForm/Steps/index.js +++ b/src/fireedge/src/client/components/Forms/Provision/CreateForm/Steps/index.js @@ -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 {