Explorar el Código

fix: Cannot modify values when startNode has defaultValue (#25595)

tags/1.9.0
17hz hace 1 mes
padre
commit
635e7d3e70
No account linked to committer's email address
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2
    0
      web/app/components/workflow/panel/inputs-panel.tsx

+ 2
- 0
web/app/components/workflow/panel/inputs-panel.tsx Ver fichero

@@ -52,6 +52,8 @@ const InputsPanel = ({ onRun }: Props) => {
startVariables.forEach((variable) => {
if (variable.default)
initialInputs[variable.variable] = variable.default
if (inputs[variable.variable] !== undefined)
initialInputs[variable.variable] = inputs[variable.variable]
})
}


Cargando…
Cancelar
Guardar