From 3d9b62d7ea75b10115f904d7f0172c2d27d8409d Mon Sep 17 00:00:00 2001 From: Samuel Gratzl Date: Tue, 19 May 2020 15:36:37 +0200 Subject: [PATCH] fix typo --- src/elements/edgeLine.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/elements/edgeLine.js b/src/elements/edgeLine.js index 7a88420..66d4cc7 100644 --- a/src/elements/edgeLine.js +++ b/src/elements/edgeLine.js @@ -9,7 +9,7 @@ export class EdgeLine extends Line { // Stroke Line Options ctx.lineCap = options.borderCapStyle; ctx.setLineDash(options.borderDash || []); - ctx.lineDashOffset = options.borderDashOffsetborderDash; + ctx.lineDashOffset = options.borderDashOffset; ctx.lineJoin = options.borderJoinStyle; ctx.lineWidth = options.borderWidth; ctx.strokeStyle = options.borderColor;