浏览代码

fix(workflow): handle else condition branch addition error in if-else node (#10257)

tags/0.11.0
GeorgeCaoJ 1年前
父节点
当前提交
cca2e7876d
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 8 次插入8 次删除
  1. 8
    8
      web/app/components/workflow/nodes/if-else/use-config.ts

+ 8
- 8
web/app/components/workflow/nodes/if-else/use-config.ts 查看文件

@@ -78,24 +78,24 @@ const useConfig = (id: string, payload: IfElseNodeType) => {
})

const handleAddCase = useCallback(() => {
const newInputs = produce(inputs, () => {
if (inputs.cases) {
const newInputs = produce(inputs, (draft) => {
if (draft.cases) {
const case_id = uuid4()
inputs.cases.push({
draft.cases.push({
case_id,
logical_operator: LogicalOperator.and,
conditions: [],
})
if (inputs._targetBranches) {
const elseCaseIndex = inputs._targetBranches.findIndex(branch => branch.id === 'false')
if (draft._targetBranches) {
const elseCaseIndex = draft._targetBranches.findIndex(branch => branch.id === 'false')
if (elseCaseIndex > -1) {
inputs._targetBranches = branchNameCorrect([
...inputs._targetBranches.slice(0, elseCaseIndex),
draft._targetBranches = branchNameCorrect([
...draft._targetBranches.slice(0, elseCaseIndex),
{
id: case_id,
name: '',
},
...inputs._targetBranches.slice(elseCaseIndex),
...draft._targetBranches.slice(elseCaseIndex),
])
}
}

正在加载...
取消
保存