Skip to content

Commit

Permalink
fix-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
etimberg committed Nov 10, 2019
1 parent ae3b550 commit 09cc1e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/core.scale.js
Original file line number Diff line number Diff line change
Expand Up @@ -1017,10 +1017,10 @@ class Scale extends Element {
tick,
};

lineWidth = resolve([gridLines.lineWidth], context, i);
lineColor = resolve([gridLines.color], context, i);
borderDash = gridLines.borderDash || [];
borderDashOffset = resolve([gridLines.borderDashOffset], context, i);
const lineWidth = resolve([gridLines.lineWidth], context, i);
const lineColor = resolve([gridLines.color], context, i);
const borderDash = gridLines.borderDash || [];
const borderDashOffset = resolve([gridLines.borderDashOffset], context, i);

lineValue = getPixelForGridLine(me, tick._index || i, offsetGridLines);

Expand Down

0 comments on commit 09cc1e4

Please sign in to comment.