From 62fe606aa2e0e2a8bc5b3f38fd2a184f0910a423 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Wed, 27 Jan 2021 12:12:08 +0100 Subject: [PATCH] fix linting issues --- docs/src/demos/Examples/Community/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/demos/Examples/Community/index.vue b/docs/src/demos/Examples/Community/index.vue index 3f4f1195..d64d4a4f 100644 --- a/docs/src/demos/Examples/Community/index.vue +++ b/docs/src/demos/Examples/Community/index.vue @@ -131,7 +131,7 @@ export default { computed: { percentage() { - return Math.round(100 / this.limit * this.editor.getCharacterCount()) + return Math.round((100 / this.limit) * this.editor.getCharacterCount()) }, },