Skip to content

Commit

Permalink
plotly.js fix bug when crosstalk filter keys are null
Browse files Browse the repository at this point in the history
  • Loading branch information
casperhart committed Dec 12, 2021
1 parent e6cc271 commit 65994fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/htmlwidgets/plotly.js
Original file line number Diff line number Diff line change
Expand Up @@ -616,9 +616,9 @@ TraceManager.prototype.updateFilter = function(group, keys) {
traces.push(trace);
}
}
this.gd.data = traces;
}

this.gd.data = traces;
Plotly.redraw(this.gd);

// NOTE: we purposely do _not_ restore selection(s), since on filter,
Expand Down

0 comments on commit 65994fb

Please sign in to comment.