Skip to content

Commit

Permalink
Fix for plotly#6251
Browse files Browse the repository at this point in the history
  • Loading branch information
alexturcea committed Jan 29, 2023
1 parent bc95e66 commit 369977f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/traces/scattergl/plot.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ var exports = module.exports = function plot(gd, subplot, cdata) {
var isSelectMode = selectMode(dragmode);
var clickSelectEnabled = fullLayout.clickmode.indexOf('select') > -1;

for(i = 0; i < count; i++) {
for(i = 0; i < cdata.length; i++) {
var cd0 = cdata[i][0];
var trace = cd0.trace;
var stash = cd0.t;
Expand Down

0 comments on commit 369977f

Please sign in to comment.