Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 65d3292

Browse files
committed
binNumber is included as part of the previous logic bloc
1 parent 86a436c commit 65d3292

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/components/Graph.react.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ const filterEventData = (gd, eventData, event) => {
2020
* into the event object
2121
*/
2222
const data = gd.data;
23+
2324
for(let i=0; i < eventData.points.length; i++) {
2425
const fullPoint = eventData.points[i];
2526
const pointData = filter(function(o) {
@@ -38,9 +39,6 @@ const filterEventData = (gd, eventData, event) => {
3839
if (has('pointNumbers', fullPoint)) {
3940
pointData.pointNumbers = fullPoint.pointNumbers;
4041
}
41-
if (has('binNumber', fullPoint)) {
42-
pointData.binNumber = fullPoint.binNumber;
43-
}
4442

4543
points[i] = pointData;
4644

0 commit comments

Comments
 (0)