소스 검색

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

tags/1.9.0
17hz 1 개월 전
부모
커밋
635e7d3e70
No account linked to committer's email address
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2
    0
      web/app/components/workflow/panel/inputs-panel.tsx

+ 2
- 0
web/app/components/workflow/panel/inputs-panel.tsx 파일 보기

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


Loading…
취소
저장