Skip to content

Commit

Permalink
🐛 fix: group node id params
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangchu committed Sep 18, 2023
1 parent f09951c commit 0788de6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/ProFlow/helper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,12 @@ export const getRenderData = (
className: cx(INIT_NODE),
data: {
label: node.group ? (
<BloodNodeGroup group={node.group} data={node.data! as ProFlowNode[]} select={select} />
<BloodNodeGroup
id={node.id!}
group={node.group}
data={node.data! as ProFlowNode[]}
select={select}
/>
) : (
<BloodNode
title={(node.data! as ProFlowNodeData).title!}
Expand Down

0 comments on commit 0788de6

Please sign in to comment.