Skip to content

Commit

Permalink
Fix title not in scope when hovering
Browse files Browse the repository at this point in the history
  • Loading branch information
jharwig committed Jun 1, 2017
1 parent 9b6f07a commit 8cbd3ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1069,8 +1069,8 @@ define([
return classes;
};
const vertexToCyNode = (vertex, transformers, hovering) => {
const title = F.vertex.title(vertex);
const result = memoizeFor('vertexToCyNode', vertex, function() {
const title = F.vertex.title(vertex);
const truncatedTitle = F.string.truncate(title, 3);
const conceptType = F.vertex.prop(vertex, 'conceptType');
const imageSrc = F.vertex.image(vertex, null, 150);
Expand Down

0 comments on commit 8cbd3ce

Please sign in to comment.