From ce71be711a2a07ff2432690390547d15eb43cc8f Mon Sep 17 00:00:00 2001 From: ZLY Date: Mon, 1 Sep 2025 15:59:44 +0800 Subject: [PATCH] =?UTF-8?q?fix(flowEditor):=20=E4=BD=BF=E7=94=A8=E7=AB=AF?= =?UTF-8?q?=E5=8F=A3=20id=20=E6=9B=BF=E4=BB=A3=20name=20=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/flowEditor/components/nodeContent.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/flowEditor/components/nodeContent.tsx b/src/pages/flowEditor/components/nodeContent.tsx index edecb8e..996b454 100644 --- a/src/pages/flowEditor/components/nodeContent.tsx +++ b/src/pages/flowEditor/components/nodeContent.tsx @@ -196,7 +196,7 @@ const NodeContent = ({ data }: { data: NodeContentData }) => {
{dataIns.map((input, index) => (
- {input.name || `输入${index + 1}`} + {input.id || `输入${index + 1}`}
))}
@@ -206,7 +206,7 @@ const NodeContent = ({ data }: { data: NodeContentData }) => {
{dataOuts.map((output, index) => (
- {output.name || `输出${index + 1}`} + {output.id || `输出${index + 1}`}
))}