Skip to content

Commit

Permalink
Fix key bug
Browse files Browse the repository at this point in the history
  • Loading branch information
emeeks committed Apr 17, 2020
1 parent 1a91e9b commit ad919f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semiotic",
"version": "2.0.0-rc.1",
"version": "2.0.0-rc.2",
"description": "The semiotic JavaScript data visualization framework",
"main": "lib/index.js",
"unpkg": "dist/semiotic.min.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/processing/InteractionItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export const calculateOverlay = (props: InteractionLayerProps) => {
</clipPath>
}
return (
<g><path
<g key={`voronoi-${i}`}><path
onClick={() => {
clickVoronoi(voronoiDataset[i], customClickBehavior, points)
}}
Expand Down

0 comments on commit ad919f3

Please sign in to comment.