mirror of
https://github.com/ansible/awx.git
synced 2026-03-07 03:31:10 -03: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()
|
||||
.append('line')
|
||||
.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('stroke', '#ccc')
|
||||
.style('stroke-width', '2px')
|
||||
|
||||
Reference in New Issue
Block a user