From 87818c0775bcee6b2f2a14bba770c871fbd011b8 Mon Sep 17 00:00:00 2001 From: longllu <llong@cttc.es> Date: Fri, 2 Dec 2022 14:52:45 +0000 Subject: [PATCH] WebUI: - Adding link tooltip to the topology --- src/webui/service/templates/js/topology.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/webui/service/templates/js/topology.js b/src/webui/service/templates/js/topology.js index 69de0445d..29156224d 100644 --- a/src/webui/service/templates/js/topology.js +++ b/src/webui/service/templates/js/topology.js @@ -89,6 +89,8 @@ d3.json("{{ url_for('main.topology') }}", function(data) { // node tooltip node.append("title").text(function(d) { return d.id; }); + // link tooltip + link.append("title").text(function(d) { return d.id; }); // link style link -- GitLab