Skip to content

Commit

Permalink
fix(core): unique pipeline graph ids
Browse files Browse the repository at this point in the history
  • Loading branch information
Rani authored and mergify[bot] committed Apr 8, 2021
1 parent c3d4601 commit eacb254
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -484,7 +484,7 @@ export class PipelineGraph extends React.Component<IPipelineGraphProps, IPipelin
transform={`translate(${node.x},${node.y})`}
>
{node.childLinks.map((link) => (
<PipelineGraphLink key={link.child.name + link.parent.name} link={link} x={node.x} y={node.y} />
<PipelineGraphLink key={`${link.child.id}_${link.parent.name}`} link={link} x={node.x} y={node.y} />
))}
<PipelineGraphNode
isExecution={!!execution}
Expand Down

0 comments on commit eacb254

Please sign in to comment.