File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ const OverviewFlow = () => {
6060 < MiniMap
6161 nodeStrokeColor = { ( n ) => {
6262 if ( n . style ?. background ) return n . style . background ;
63- if ( n . type === "input" ) return "#fdba74" ;
64- if ( n . type === "output" ) return "#93C5FD" ;
63+ if ( n . data . label . props . className . includes ( 'orange' ) ) return "#fdba74" ;
64+ if ( n . data . label . props . className . includes ( 'blue' ) ) return "#93C5FD" ;
6565 if ( n . type === "default" ) return "#1a192b" ;
6666
6767 return "#eee" ;
Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ class FlowBuilder {
3232 )
3333 } ,
3434 // type: item.depth === 0 ? 'input' : '',
35- type : item . isClientComponent ? 'input' : 'output' ,
36- // type: 'default',
35+ // type: item.isClientComponent ? 'input' : 'output',
36+ type : 'default' ,
3737 position : { x : 0 , y : 0 } ,
3838 style : {
3939 border : 'none' ,
You can’t perform that action at this time.
0 commit comments