Merge pull request #144 from squat/fix_graph_newlines
pkg/mesh/graph.go: fix format
This commit is contained in:
commit
6684d5bca3
@ -169,9 +169,9 @@ func nodeLabel(location, name string, cidr *net.IPNet, priv, wgIP net.IP, endpoi
|
|||||||
if endpoint != nil {
|
if endpoint != nil {
|
||||||
label = append(label, endpoint.String())
|
label = append(label, endpoint.String())
|
||||||
}
|
}
|
||||||
return graphEscape(strings.Join(label, "\n"))
|
return graphEscape(strings.Join(label, "\\n"))
|
||||||
}
|
}
|
||||||
|
|
||||||
func peerLabel(peer *Peer) string {
|
func peerLabel(peer *Peer) string {
|
||||||
return graphEscape(fmt.Sprintf("%s\n%s\n", peer.Name, peer.Endpoint.String()))
|
return graphEscape(fmt.Sprintf("%s\\n%s\n", peer.Name, peer.Endpoint.String()))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user