Skip to content

Commit f4bee1c

Browse files
committed
Minor fix.
1 parent cccf7e8 commit f4bee1c

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

example/DrillDown.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ class DrillDown extends React.Component {
5959
cursor: 'pointer',
6060
};
6161

62-
console.log(btnStyle);
63-
6462
return (
6563
<div style={{
6664
position: 'relative',

example/Example.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ class Example extends React.Component {
123123
super(props)
124124

125125
this.state = {
126-
mappedIds: [0],
126+
mappedIds: [2, 1, 0],
127127
dataSource: {
128128
chart: {
129129
caption: 'PARENT',
@@ -217,7 +217,6 @@ class Example extends React.Component {
217217
height='400'
218218
dataFormat="JSON"
219219
dataSource={thirdDataSource} />
220-
<a href="https://www.google.com">Google</a>
221220
</DrillDown>
222221
</div>
223222
)

0 commit comments

Comments
 (0)