Skip to content

Commit

Permalink
#85 correct node type value
Browse files Browse the repository at this point in the history
Signed-off-by: David Radley <david_radley@uk.ibm.com>
  • Loading branch information
davidradl committed Mar 6, 2021
1 parent a823821 commit 9e61577
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function NodeDisplay(props) {
const description = node.description;
const qualifiedName= node.qualifiedName;
const gen = node.gen;
const typeName = node.nodeType.label;
const typeName = node.nodeType;
const systemAttributes = node.systemAttributes;

return (
Expand Down

0 comments on commit 9e61577

Please sign in to comment.