Skip to content

Commit

Permalink
Mismatched class names, oops.
Browse files Browse the repository at this point in the history
  • Loading branch information
foot committed Feb 1, 2016
1 parent 0c9bed0 commit fd7ced7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/scripts/charts/node-shape-cloud.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function getExtents(svgPath) {
return [d3.extent(points, p => p[0]), d3.extent(points, p => p[1])];
}

export default function NodeShapeHex({highlighted, size, color}) {
export default function NodeShapeCloud({highlighted, size, color}) {
const [[minx, maxx], [miny, maxy]] = getExtents(CLOUD_PATH);
const width = (maxx - minx);
const height = (maxy - miny);
Expand Down

0 comments on commit fd7ced7

Please sign in to comment.