diff --git a/packages/zapp/console/src/components/flytegraph/ReactFlow/ReactFlowWrapper.tsx b/packages/zapp/console/src/components/flytegraph/ReactFlow/ReactFlowWrapper.tsx index bad3d73d6..618f59a8f 100644 --- a/packages/zapp/console/src/components/flytegraph/ReactFlow/ReactFlowWrapper.tsx +++ b/packages/zapp/console/src/components/flytegraph/ReactFlow/ReactFlowWrapper.tsx @@ -55,7 +55,7 @@ export const ReactFlowWrapper: React.FC = ({ ...state, shouldUpdate: true, nodes: rfGraphJson.nodes, - edges: rfGraphJson.edges, + edges: rfGraphJson.edges.map(edge => ({ ...edge, zIndex: 0 })), })); }, [rfGraphJson]); diff --git a/packages/zapp/console/src/components/flytegraph/ReactFlow/utils.tsx b/packages/zapp/console/src/components/flytegraph/ReactFlow/utils.tsx index 8e815ad34..99b7f80a5 100644 --- a/packages/zapp/console/src/components/flytegraph/ReactFlow/utils.tsx +++ b/packages/zapp/console/src/components/flytegraph/ReactFlow/utils.tsx @@ -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',