File tree 2 files changed +5
-2
lines changed
ui/src/features/project/pipelines
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ export const Graph = memo((props: GraphProps) => {
81
81
minZoom = { 0.1 }
82
82
nodesConnectable = { false }
83
83
nodesDraggable = { false }
84
+ proOptions = { { hideAttribution : true } }
84
85
>
85
86
< Controls />
86
87
</ ReactFlow >
Original file line number Diff line number Diff line change @@ -91,7 +91,8 @@ CustomNode.Container = (props: PropsWithChildren<{ stage?: Stage; warehouse?: Wa
91
91
type = 'target'
92
92
position = { Position . Left }
93
93
style = { {
94
- backgroundColor : 'transparent'
94
+ backgroundColor : 'transparent' ,
95
+ top : '48%'
95
96
} }
96
97
/>
97
98
< div className = { styles . container } > { props . children } </ div >
@@ -100,7 +101,8 @@ CustomNode.Container = (props: PropsWithChildren<{ stage?: Stage; warehouse?: Wa
100
101
type = 'source'
101
102
position = { Position . Right }
102
103
style = { {
103
- backgroundColor : 'transparent'
104
+ backgroundColor : 'transparent' ,
105
+ top : '48%'
104
106
} }
105
107
/>
106
108
</ >
You can’t perform that action at this time.
0 commit comments