File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -523,18 +523,18 @@ function remapTransformedArrays(cd0, newTrace) {
523
523
var oldTrace = cd0 . trace ;
524
524
var arrayAttrs = PlotSchema . findArrayAttributes ( oldTrace ) ;
525
525
var transformedArrayHash = { } ;
526
- var i , ast ;
526
+ var i , astr ;
527
527
528
528
for ( i = 0 ; i < arrayAttrs . length ; i ++ ) {
529
- ast = arrayAttrs [ i ] ;
530
- transformedArrayHash [ ast ] = Lib . nestedProperty ( oldTrace , ast ) . get ( ) . slice ( ) ;
529
+ astr = arrayAttrs [ i ] ;
530
+ transformedArrayHash [ astr ] = Lib . nestedProperty ( oldTrace , astr ) . get ( ) . slice ( ) ;
531
531
}
532
532
533
533
cd0 . trace = newTrace ;
534
534
535
535
for ( i = 0 ; i < arrayAttrs . length ; i ++ ) {
536
- ast = arrayAttrs [ i ] ;
537
- Lib . nestedProperty ( cd0 . trace , ast ) . set ( transformedArrayHash [ ast ] ) ;
536
+ astr = arrayAttrs [ i ] ;
537
+ Lib . nestedProperty ( cd0 . trace , astr ) . set ( transformedArrayHash [ astr ] ) ;
538
538
}
539
539
}
540
540
You can’t perform that action at this time.
0 commit comments