mirror of
https://github.com/ansible/awx.git
synced 2026-05-15 05:17:36 -02:30
Update awx/ui/src/screens/TopologyView/MeshGraph.js
Co-authored-by: Tiago Góes <tiago.goes2009@gmail.com>
This commit is contained in:
@@ -105,7 +105,7 @@ function MeshGraph({ data, showLegend, zoom }) {
|
|||||||
.enter()
|
.enter()
|
||||||
.append('line')
|
.append('line')
|
||||||
.attr('class', (_, i) => `link-${i}`)
|
.attr('class', (_, i) => `link-${i}`)
|
||||||
.attr('data-cy', (d) => `${d.source}-${d.target}`)
|
.attr('data-cy', (d) => `${d.source.hostname}-${d.target.hostname}`)
|
||||||
.style('fill', 'none')
|
.style('fill', 'none')
|
||||||
.style('stroke', '#ccc')
|
.style('stroke', '#ccc')
|
||||||
.style('stroke-width', '2px')
|
.style('stroke-width', '2px')
|
||||||
|
|||||||
Reference in New Issue
Block a user