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
parent 12e1b82328
commit b124879273

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

Loading…
Cancel
Save