From 3942f8e4df3f78c71c2d90d6454667e18f62ee9f Mon Sep 17 00:00:00 2001 From: Sergej Atamantschuk Date: Sun, 9 Jan 2022 16:12:57 +0100 Subject: [PATCH] fix: correctly apply dash property --- src/components/Circle/circleMixin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Circle/circleMixin.js b/src/components/Circle/circleMixin.js index 9a5f8dc..a757f18 100644 --- a/src/components/Circle/circleMixin.js +++ b/src/components/Circle/circleMixin.js @@ -122,10 +122,10 @@ export default { }, methods: { getDashSpacingPercent() { - return this.dash.spacing / this.dash.count; + return this.options.dash.spacing / this.options.dash.count; }, getDashPercent() { - return (1 - this.dash.spacing) / this.dash.count; + return (1 - this.options.dash.spacing) / this.options.dash.count; }, /* Animations helper Methods */ getNegativeCircumference() {