File tree Expand file tree Collapse file tree 2 files changed +3
-16
lines changed
js/src/components/lineage Expand file tree Collapse file tree 2 files changed +3
-16
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export function GraphColumnNode(nodeProps: GrapeColumnNodeProps) {
78
78
width = "280px"
79
79
height = "16px"
80
80
padding = "0px 10px"
81
- border = "1px solid lightgray "
81
+ border = "1px solid gray "
82
82
backgroundColor = { isFocus ? "#f0f0f0" : "inherit" }
83
83
_hover = { {
84
84
backgroundColor : isFocus ? "#f0f0f0" : "#f0f0f0" ,
@@ -89,7 +89,7 @@ export function GraphColumnNode(nodeProps: GrapeColumnNodeProps) {
89
89
onMouseLeave = { ( ) => {
90
90
setIsHovered ( false ) ;
91
91
} } >
92
- < Flex fontSize = "10px " color = "gray" width = "100%" gap = "3px" alignItems = "center" >
92
+ < Flex fontSize = "11px " color = "gray" width = "100%" gap = "3px" alignItems = "center" >
93
93
{ changeStatus && (
94
94
< Icon
95
95
boxSize = "12px"
Original file line number Diff line number Diff line change @@ -319,19 +319,7 @@ export function PrivateLineageView(
319
319
}
320
320
321
321
if ( viewOptions . column_level_lineage ) {
322
- const nodesContainsColumns = nodeColumnSetMap
323
- ? new Set (
324
- Object . entries ( nodeColumnSetMap )
325
- . filter ( ( [ _ , columnSet ] ) => {
326
- return columnSet . size > 0 ;
327
- } )
328
- . map ( ( [ nodeId , _ ] ) => {
329
- return nodeId ;
330
- } ) ,
331
- )
332
- : new Set < string > ( ) ;
333
- const nodesInCLL = cllNodeIds ?? new Set < string > ( ) ;
334
- return union ( nodesContainsColumns , nodesInCLL ) ;
322
+ return cllNodeIds ?? new Set < string > ( ) ;
335
323
}
336
324
337
325
if ( focusedNode ) {
@@ -354,7 +342,6 @@ export function PrivateLineageView(
354
342
lineageGraph ,
355
343
selectMode ,
356
344
viewOptions . column_level_lineage ,
357
- nodeColumnSetMap ,
358
345
focusedNode ,
359
346
isModelsChanged ,
360
347
multiNodeAction . actionState . actions ,
You can’t perform that action at this time.
0 commit comments