diff --git a/client/src/components/Summoner/Overview/SummonerStats.vue b/client/src/components/Summoner/Overview/SummonerStats.vue
index d4d5196..6fa5980 100644
--- a/client/src/components/Summoner/Overview/SummonerStats.vue
+++ b/client/src/components/Summoner/Overview/SummonerStats.vue
@@ -97,8 +97,10 @@
{{ stat / stats.global.count|round }}
- kill participation
- {{ stats.global.kp|percent }}
+ time
+ {{ (stats.global.time / 3600).toFixed(1) + 'h' }}
+
+ {{ (stats.global.time / stats.global.count)|secToTime(true) }}
kda
@@ -106,6 +108,10 @@
class="w-1/4"
>{{ (stats.global.kills + stats.global.assists) / stats.global.deaths|round }}
+
+ kill participation
+ {{ stats.global.kp|percent }}
+