Skip to content

Commit 95911da

Browse files
committed
bug in relinkPrivateKeys condition
... that I thought might fix candlestick update bugs but there's more to that
1 parent 035c98d commit 95911da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plots/plots.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ plots.supplyDefaults = function(gd) {
380380
if(_module.cleanData) _module.cleanData(newFullData);
381381
}
382382

383-
if(oldFullData.length === newData.length) {
383+
if(oldFullData.length === newFullData.length) {
384384
for(i = 0; i < newFullData.length; i++) {
385385
relinkPrivateKeys(newFullData[i], oldFullData[i]);
386386
}

0 commit comments

Comments
 (0)