From 7809aa13f57f95b0b820cbe1cc178c4e646327b4 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Mon, 11 Jan 2021 15:47:25 +0100 Subject: [PATCH] fix minor glitch with drawing demo --- docs/src/demos/Examples/Drawing/Component.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/demos/Examples/Drawing/Component.vue b/docs/src/demos/Examples/Drawing/Component.vue index 4d1cd508c..387e80ed3 100644 --- a/docs/src/demos/Examples/Drawing/Component.vue +++ b/docs/src/demos/Examples/Drawing/Component.vue @@ -60,7 +60,7 @@ export default { '#80CBC4', '#9DEF8F', ]), - size: Math.floor(Math.random() * Math.floor(20)), + size: Math.ceil(Math.random() * Math.floor(10)), svg: null, path: null, points: [],