diff --git a/client/src/components/Summoner/SummonerStats.vue b/client/src/components/Summoner/SummonerStats.vue
index b7dbee0..a1cd0e9 100644
--- a/client/src/components/Summoner/SummonerStats.vue
+++ b/client/src/components/Summoner/SummonerStats.vue
@@ -78,6 +78,10 @@
kill participation
{{ globalStats.kp|percent }}
+
+ kda
+ {{ globalStats.kills / globalStats.deaths|round }}
+
diff --git a/client/src/main.js b/client/src/main.js
index 53b6892..123d1d5 100644
--- a/client/src/main.js
+++ b/client/src/main.js
@@ -20,6 +20,10 @@ Vue.filter('percent', (value) => {
return `${+value.toFixed(2)}%`
})
+Vue.filter('round', (value) => {
+ return `${+value.toFixed(2)}`
+})
+
new Vue({
router,
store,