Remove roleB - only roleA is labelled

This commit is contained in:
Adrian Hall
2020-03-17 10:16:19 +00:00
parent 4f50e36e5b
commit a3b97f7c24
4 changed files with 38 additions and 34 deletions

View File

@@ -100,7 +100,7 @@ const adjustEntities = function(svgNode, graph) {
};
const getEdgeName = function(rel) {
return (rel.entityA + rel.roleA + rel.roleB + rel.entityB).replace(/\s/g, '');
return (rel.entityA + rel.roleA + rel.entityB).replace(/\s/g, '');
};
/**