浏览代码

Fix: Fixed the issue that the key parameter duplication check of the begin operator was incorrect #3221 (#8964)

### What problem does this PR solve?

Fix: Fixed the issue that the key parameter duplication check of the
begin operator was incorrect #3221
### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.20.0
balibabu 3 个月前
父节点
当前提交
af00f2cad8
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 6 次插入3 次删除
  1. 6
    3
      web/src/pages/agent/form/begin-form/use-edit-query.ts

+ 6
- 3
web/src/pages/agent/form/begin-form/use-edit-query.ts 查看文件

@@ -1,7 +1,7 @@
import { useSetModalState } from '@/hooks/common-hooks';
import { useSetSelectedRecord } from '@/hooks/logic-hooks';
import { useCallback, useMemo, useState } from 'react';
import { UseFormReturn } from 'react-hook-form';
import { UseFormReturn, useWatch } from 'react-hook-form';
import { BeginQuery, INextOperatorForm } from '../../interface';

export const useEditQueryRecord = ({
@@ -10,11 +10,14 @@ export const useEditQueryRecord = ({
const { setRecord, currentRecord } = useSetSelectedRecord<BeginQuery>();
const { visible, hideModal, showModal } = useSetModalState();
const [index, setIndex] = useState(-1);
const inputs: BeginQuery[] = useWatch({
control: form.control,
name: 'inputs',
});

const otherThanCurrentQuery = useMemo(() => {
const inputs: BeginQuery[] = form?.getValues('inputs') || [];
return inputs.filter((item, idx) => idx !== index);
}, [form, index]);
}, [index, inputs]);

const handleEditRecord = useCallback(
(record: BeginQuery) => {

正在加载...
取消
保存