Skip to content

Commit

Permalink
Fix typo node.stype ❌ node.symbolType ✅ (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcaldas authored Oct 11, 2017
1 parent 2f60a88 commit d17718a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Graph/helper.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ function _buildNodeProps(node, config, nodeCallbacks, someNodeHighlighted, trans
size: nodeSize * t,
stroke,
strokeWidth: strokeWidth * t,
type: node.type || config.node.symbolType
type: node.symbolType || config.node.symbolType
};
}

Expand Down

0 comments on commit d17718a

Please sign in to comment.