Skip to content

Commit

Permalink
edge overlap
Browse files Browse the repository at this point in the history
  • Loading branch information
james-union committed Jul 20, 2022
1 parent 8abcd1e commit 3aed51a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const ReactFlowWrapper: React.FC<RFWrapperProps> = ({
...state,
shouldUpdate: true,
nodes: rfGraphJson.nodes,
edges: rfGraphJson.edges,
edges: rfGraphJson.edges.map(edge => ({ ...edge, zIndex: 0 })),
}));
}, [rfGraphJson]);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ export const getNestedContainerStyle = (nodeExecutionStatus) => {
const style = {
border: `1px dashed ${getStatusColor(nodeExecutionStatus)}`,
borderRadius: '8px',
background: 'rgba(255,255,255,.9)',
width: '100%',
height: '100%',
padding: '.25rem',
Expand Down

0 comments on commit 3aed51a

Please sign in to comment.