From 86e3acfeeb9445a41633d45de38a8e80388c72e8 Mon Sep 17 00:00:00 2001
From: CazSaa <cazsaaltink@gmail.com>
Date: Thu, 21 Oct 2021 23:10:58 +0200
Subject: [PATCH] Math.floor on fill percentage

---
 store/index.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/store/index.js b/store/index.js
index daf76d5..cbd4827 100644
--- a/store/index.js
+++ b/store/index.js
@@ -29,6 +29,6 @@ export const getters = {
     return state.consumption
   },
   fillPercentage(state) {
-    return Math.min(100, (state.consumption / state.goal) * 100)
+    return Math.min(100, Math.floor(state.consumption / state.goal * 100))
   }
 }
-- 
GitLab