diff --git a/client/src/components/Match/DetailedMatchGlobalStats.vue b/client/src/components/Match/DetailedMatchGlobalStats.vue index d8b0682..91a99df 100644 --- a/client/src/components/Match/DetailedMatchGlobalStats.vue +++ b/client/src/components/Match/DetailedMatchGlobalStats.vue @@ -32,14 +32,14 @@
{{ +(team.teamStats.gold / 1000).toFixed(2) + 'k' }}
+ >{{ +(team.teamStats.gold / 1000).toFixed(1) + 'k' }}
gold
{{ +(team.teamStats.dmgChamp / 1000).toFixed(2) + 'k' }}
+ >{{ +(team.teamStats.dmgChamp / 1000).toFixed(1) + 'k' }}
dmg
diff --git a/client/src/components/Match/DetailedMatchTeam.vue b/client/src/components/Match/DetailedMatchTeam.vue index d179524..5468314 100644 --- a/client/src/components/Match/DetailedMatchTeam.vue +++ b/client/src/components/Match/DetailedMatchTeam.vue @@ -198,7 +198,7 @@ export default { return { backgroundColor: `rgba(${rgb}, ${opacity})`, - boxShadow: value === biggestValue ? '#abb4d0 0px 0px 0px 2px inset' : '' + boxShadow: value === biggestValue && value !== 0 ? '#abb4d0 0px 0px 0px 2px inset' : '' } }, displayBorderbottom(index) { diff --git a/client/src/components/Summoner/SummonerChampions.vue b/client/src/components/Summoner/SummonerChampions.vue index 4866a95..7446201 100644 --- a/client/src/components/Summoner/SummonerChampions.vue +++ b/client/src/components/Summoner/SummonerChampions.vue @@ -47,7 +47,7 @@
{{ champion.champion }}
diff --git a/client/src/components/SwitchToggle.vue b/client/src/components/SwitchToggle.vue index 9cd0a8d..972b68d 100644 --- a/client/src/components/SwitchToggle.vue +++ b/client/src/components/SwitchToggle.vue @@ -1,5 +1,5 @@