File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -32,13 +32,14 @@ export default class Area extends Component {
32
32
return (
33
33
< g >
34
34
{
35
- dataset . map ( ( area ) => {
35
+ dataset . map ( ( area , i ) => {
36
36
return (
37
37
< path
38
38
className = { `${ areaClassName } area` }
39
39
fill = { area . color }
40
40
d = { that . _setAxes ( area . data ) }
41
41
style = { area . style }
42
+ key = { i }
42
43
/>
43
44
)
44
45
} )
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ export default class Bar extends Component {
52
52
return (
53
53
< g >
54
54
{
55
- dataset . data . map ( ( bar ) => {
55
+ dataset . data . map ( ( bar , i ) => {
56
56
return (
57
57
< rect
58
58
className = { `${ barClassName } bar` }
@@ -64,6 +64,7 @@ export default class Bar extends Component {
64
64
style = { Object . assign ( { } , dataset . style , bar . _style ) }
65
65
onMouseOut = { that . triggerOut . bind ( this , bar ) }
66
66
onMouseOver = { that . triggerOver . bind ( this , bar ) }
67
+ key = { i }
67
68
/>
68
69
)
69
70
} )
You can’t perform that action at this time.
0 commit comments