Skip to content

Commit

Permalink
Fix #320
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Nov 24, 2018
1 parent 663c89d commit f068c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cairis/web/dist/js/cairis/SVGhandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ function handleNodeClick(event,objt) {
dimValues = [];
for (var i = 0; i < env.theProperties.length; i++) {
if (env.theProperties[i].value != "None") {
dimValues.push("<tr><td>" + env.theProperties[i].name + "</td><td>" + env.theProperties[i].value + "</td><td>" + env.theRationale[i] + "</td></tr>");
dimValues.push("<tr><td>" + env.theProperties[i].name + "</td><td>" + env.theProperties[i].value + "</td><td>" + env.theProperties[i].rationale + "</td></tr>");
}
}
$("#propTable").find("tbody").append(dimValues.join(' '));
Expand Down

0 comments on commit f068c03

Please sign in to comment.