We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54d3f73 commit 628beadCopy full SHA for 628bead
src/components/KeplerGL/index.js
@@ -67,7 +67,9 @@ function getHoverInfo(info, allData) {
67
? allData[objectHovered.properties.index]
68
// with upgrade to v2 we now need to the data sub-object for hex and grid layer
69
: objectHovered.points.map(pt => {
70
- return pt.data;
+ return pt.data
71
+ ? pt.data
72
+ : pt.source.data;
73
});
74
}
75
0 commit comments