frontend: fix small errors (iedon/Birdlg-Go 0b904fd)
This commit is contained in:
parent
3fe3def49f
commit
0b5e28851c
@ -108,7 +108,7 @@ func birdRouteToGraphviz(servers []string, responses []string, target string) st
|
|||||||
|
|
||||||
if !routeFound {
|
if !routeFound {
|
||||||
// Cannot find a path starting from this server
|
// Cannot find a path starting from this server
|
||||||
addEdge(server, "Target: "+target, "[color=gray,label=\"?\"?]")
|
addEdge(server, "Target: "+target, "[color=gray,label=\"?\"]")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -97,11 +97,11 @@ func webHandlerBGPMap(endpoint string, command string) func(w http.ResponseWrite
|
|||||||
`<script>
|
`<script>
|
||||||
var viz = new Viz();
|
var viz = new Viz();
|
||||||
viz.renderSVGElement(`+"`"+birdRouteToGraphviz(servers, responses, urlCommands)+"`"+`)
|
viz.renderSVGElement(`+"`"+birdRouteToGraphviz(servers, responses, urlCommands)+"`"+`)
|
||||||
.then(function(element) {
|
.then(element => {
|
||||||
document.body.appendChild(element);
|
document.body.appendChild(element);
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
document.body.appendChild("<pre>"+error+"</pre>")
|
document.body.innerHTML = "<pre>"+error+"</pre>"
|
||||||
});
|
});
|
||||||
</script>`,
|
</script>`,
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user