forked from p15670423/monkey
Fix edge width and tunnel edge color
This commit is contained in:
parent
27d9e8bcee
commit
48be73bc3f
|
@ -28,6 +28,7 @@ let options = {
|
||||||
improvedLayout: false
|
improvedLayout: false
|
||||||
},
|
},
|
||||||
edges: {
|
edges: {
|
||||||
|
width: 2,
|
||||||
smooth: {
|
smooth: {
|
||||||
type: 'curvedCW'
|
type: 'curvedCW'
|
||||||
}
|
}
|
||||||
|
@ -61,7 +62,7 @@ class MapPageComponent extends React.Component {
|
||||||
case 'exploited':
|
case 'exploited':
|
||||||
return '#c00';
|
return '#c00';
|
||||||
case 'tunnel':
|
case 'tunnel':
|
||||||
return '#aaa';
|
return '#0058aa';
|
||||||
case 'scan':
|
case 'scan':
|
||||||
return '#f90';
|
return '#f90';
|
||||||
case 'island':
|
case 'island':
|
||||||
|
|
Loading…
Reference in New Issue