frontend: fix small errors (iedon/Birdlg-Go 0b904fd)

This commit is contained in:
Lan Tian 2020-06-01 22:20:31 +08:00
parent 3fe3def49f
commit 0b5e28851c
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22
2 changed files with 3 additions and 3 deletions

View File

@ -108,7 +108,7 @@ func birdRouteToGraphviz(servers []string, responses []string, target string) st
if !routeFound {
// Cannot find a path starting from this server
addEdge(server, "Target: "+target, "[color=gray,label=\"?\"?]")
addEdge(server, "Target: "+target, "[color=gray,label=\"?\"]")
}
}

View File

@ -97,11 +97,11 @@ func webHandlerBGPMap(endpoint string, command string) func(w http.ResponseWrite
`<script>
var viz = new Viz();
viz.renderSVGElement(`+"`"+birdRouteToGraphviz(servers, responses, urlCommands)+"`"+`)
.then(function(element) {
.then(element => {
document.body.appendChild(element);
})
.catch(error => {
document.body.appendChild("<pre>"+error+"</pre>")
document.body.innerHTML = "<pre>"+error+"</pre>"
});
</script>`,
)