diff --git a/client/src/components/Match/DetailedMatchGlobalStats.vue b/client/src/components/Match/DetailedMatchGlobalStats.vue
index 59d92c0..ba618d8 100644
--- a/client/src/components/Match/DetailedMatchGlobalStats.vue
+++ b/client/src/components/Match/DetailedMatchGlobalStats.vue
@@ -38,33 +38,33 @@
:class="textColor"
class="text-sm font-medium"
>{{ `${team.teamStats.kills}/${team.teamStats.deaths}/${team.teamStats.assists}` }}
-
k / d / a
+ K / D / A
{{ +(team.teamStats.gold / 1000).toFixed(1) + 'k' }}
-
gold
+
Gold
{{ +(team.teamStats.dmgChamp / 1000).toFixed(1) + 'k' }}
-
dmg
+
Dmg
- {{ team.towers }} towers
+ {{ team.towers }} Towers
- {{ team.dragons }} dragons
+ {{ team.dragons }} Dragons
- {{ team.barons }} barons
+ {{ team.barons }} Barons
diff --git a/client/src/components/Match/DetailedMatchTeam.vue b/client/src/components/Match/DetailedMatchTeam.vue
index 02ff049..0700fa7 100644
--- a/client/src/components/Match/DetailedMatchTeam.vue
+++ b/client/src/components/Match/DetailedMatchTeam.vue
@@ -163,61 +163,61 @@
{{ player.stats.kills }}
|
{{ player.stats.deaths }}
|
{{ player.stats.assists }}
|
{{ player[statsFormat].minions }}
|
{{ player[statsFormat].vision }}
|
{{ roundStats(player[statsFormat].gold) }}
|
{{ roundStats(player[statsFormat].dmgChamp) }}
|
{{ roundStats(player[statsFormat].dmgObj) }}
|
{{ roundStats(player[statsFormat].dmgTaken) }}
|
{{ player.stats.kp }}
|
@@ -227,6 +227,7 @@