Skip to content

Commit

Permalink
[chore] remove hover highlight in video export modal (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgervang authored Sep 1, 2021
1 parent 71b771f commit 6c79406
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions modules/react/src/kepler-layers.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,18 @@ function renderLayer(overlays, idx, map, viewState) {
};

// Layer is Layer class
const layerOverlay = layer.renderLayer({
data,
gpuFilter,
idx,
interactionConfig,
layerCallbacks,
mapState: {...mapState, ...viewState},
animationConfig,
objectHovered
});
const layerOverlay = layer
.renderLayer({
data,
gpuFilter,
idx,
interactionConfig,
layerCallbacks,
mapState: {...mapState, ...viewState},
animationConfig,
objectHovered
})
.map(deckLayer => deckLayer.clone({pickable: false}));
return overlays.concat(layerOverlay || []);
}

Expand Down

0 comments on commit 6c79406

Please sign in to comment.