diff --git a/service-web/client/src/pages/ai/flow/FlowEditor.tsx b/service-web/client/src/pages/ai/flow/FlowEditor.tsx index cf9624e..d102146 100644 --- a/service-web/client/src/pages/ai/flow/FlowEditor.tsx +++ b/service-web/client/src/pages/ai/flow/FlowEditor.tsx @@ -51,6 +51,7 @@ const FlowableDiv = styled.div` position: absolute; right: 20px; top: 20px; + z-index: 10; } .node-card { @@ -101,7 +102,7 @@ function FlowEditor() { } = useFlowStore() const [currentNodeForm, setCurrentNodeForm] = useState() - const editNode = (id: string, name: string, description: string, columnSchema?: Schema[]) => { + const editNode = (id: string, columnSchema?: Schema[]) => { if (!isNil(columnSchema)) { setCurrentNodeForm( amisRender( @@ -321,13 +322,6 @@ function FlowEditor() { {contextHolder} - ({key: def.key, label: def.name})), @@ -352,11 +346,18 @@ function FlowEditor() { }, }} > - +