diff --git a/client/src/components/Match/DetailedMatchTeam.vue b/client/src/components/Match/DetailedMatchTeam.vue
index dcb97ba..f3b17ff 100644
--- a/client/src/components/Match/DetailedMatchTeam.vue
+++ b/client/src/components/Match/DetailedMatchTeam.vue
@@ -174,19 +174,19 @@

- {{ data.stats.gold }}
+ {{ data.stats.gold|kilo }}

- {{ data.stats.dmgChamp }}
+ {{ data.stats.dmgChamp|kilo }}

diff --git a/client/src/main.js b/client/src/main.js
index 08d0315..6b04997 100644
--- a/client/src/main.js
+++ b/client/src/main.js
@@ -14,6 +14,10 @@ Vue.filter('capitalize', (value) => {
return value.charAt(0).toUpperCase() + value.slice(1).toLowerCase()
})
+Vue.filter('kilo', (value) => {
+ return `${+(value / 1000).toFixed(1)}k`
+})
+
Vue.filter('secToTime', (sec) => {
const min = Math.floor(sec / 60)
const newSec = sec - min * 60
|