Ver código fonte

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

tags/1.9.0
17hz 1 mês atrás
pai
commit
635e7d3e70
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 2 adições e 0 exclusões
  1. 2
    0
      web/app/components/workflow/panel/inputs-panel.tsx

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

@@ -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]
})
}


Carregando…
Cancelar
Salvar