Skip to content

Commit

Permalink
Series clipping - error in cypress tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TorsteinHonsi committed Sep 17, 2021
1 parent 99495fc commit e6f30d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ts/Core/Series/Series.ts
Expand Up @@ -3389,7 +3389,7 @@ class Series {
}

// Initialize the animation
if (animDuration) {
if (series.animate && animDuration) {
series.animate(true);
}

Expand Down Expand Up @@ -3438,7 +3438,7 @@ class Series {
series.invertGroups(inverted);

// Run the animation
if (animDuration) {
if (series.animate && animDuration) {
series.animate();
}

Expand Down

0 comments on commit e6f30d4

Please sign in to comment.