diff --git a/client/src/components/Summoner/SummonerStats.vue b/client/src/components/Summoner/SummonerStats.vue
index 82f2f7f..1587b34 100644
--- a/client/src/components/Summoner/SummonerStats.vue
+++ b/client/src/components/Summoner/SummonerStats.vue
@@ -41,11 +41,13 @@
@@ -177,7 +179,7 @@
- b.count - a.count)
+ },
mostPlayedRole() {
return Math.max(...this.stats.role.map(r => r.count), 0)
},
@@ -263,6 +269,12 @@ export default {
.filter(l => l.type === typeName)
.sort((a, b) => b.count - a.count)
},
+ roundedRoleLosses(win, count) {
+ return win === count ? 'rounded-full' : 'rounded-b-full'
+ },
+ roundedRoleWins(win, count) {
+ return win === count ? 'rounded-full' : 'rounded-t-full'
+ },
winLossColor(win, loss) {
const colors = {
win: 'text-gray-200',