fix(workflow-panel): pass relationType prop to all Container instances

Ensure consistent behavior by passing relationType prop to Container components in both conditional rendering cases
pull/21998/head
Mminamiyama 10 months ago committed by crazywoola
parent 4c27386ba0
commit 0de8e0e275

@ -96,11 +96,12 @@ const Relations = ({
<Container <Container
key={index} key={index}
nextNode={item} nextNode={item}
relationType={relationType}
/> />
) )
}) })
) : ( ) : (
<Container key={0} /> <Container key={0} relationType={relationType}/>
)} )}
</div> </div>
) )

Loading…
Cancel
Save