mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 12:57:28 +00:00
refactor: remove redundant queue type in summoner overview
This commit is contained in:
parent
44ce31e4b4
commit
70b135c8f2
1 changed files with 2 additions and 2 deletions
|
|
@ -120,7 +120,7 @@
|
||||||
:class="{'bg-blue-760': index % 2 !== 0}"
|
:class="{'bg-blue-760': index % 2 !== 0}"
|
||||||
class="flex justify-between items-center px-4 py-1 leading-tight"
|
class="flex justify-between items-center px-4 py-1 leading-tight"
|
||||||
>
|
>
|
||||||
<div class="w-2/4 text-left">{{ `${league.type} ${league.name.toLowerCase()}` }}</div>
|
<div class="w-2/4 text-left">{{ league.name.toLowerCase() }}</div>
|
||||||
<div
|
<div
|
||||||
:class="calculateWinrate(league.wins, league.count).color"
|
:class="calculateWinrate(league.wins, league.count).color"
|
||||||
class="w-1/4"
|
class="w-1/4"
|
||||||
|
|
@ -152,7 +152,7 @@
|
||||||
:class="{'bg-blue-760': index % 2 !== 0}"
|
:class="{'bg-blue-760': index % 2 !== 0}"
|
||||||
class="flex justify-between items-center px-4 py-1 leading-tight"
|
class="flex justify-between items-center px-4 py-1 leading-tight"
|
||||||
>
|
>
|
||||||
<div class="w-2/4 text-left">{{ `${league.type} ${league.name.toLowerCase()}` }}</div>
|
<div class="w-2/4 text-left">{{ league.name.toLowerCase() }}</div>
|
||||||
<div
|
<div
|
||||||
:class="calculateWinrate(league.wins, league.count).color"
|
:class="calculateWinrate(league.wins, league.count).color"
|
||||||
class="w-1/4"
|
class="w-1/4"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue