Skip to content
Snippets Groups Projects
Commit 401974f0 authored by imcovangent's avatar imcovangent
Browse files

Bug fix in visualisation package (by Benedikt)

Former-commit-id: 74a768e6de4db77adceb40e9db47d831a02bd544
parent 8cdc878c
No related branches found
No related tags found
No related merge requests found
......@@ -18322,7 +18322,10 @@ d3.json(jsonFile, function(error, mdo)
}
var aToolNameSplit = aTool.name.split(': ')
var headLine = "Tool Information (" + aToolNameSplit[1] + ")";
var headLine;
if (aToolNameSplit.length>1){headLine = "Tool Information (" + aToolNameSplit[1] + ")";}
else {headLine = "Tool Information (" + aToolNameSplit[0] + ")";}
var tabRemoveSVG = toolTableGroup.append("svg")
.attr("width",String(headLine.length*9.5+"pt"))
.attr("height",26)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment