mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 21:07:27 +00:00
fix: remove current summoner name from tooltip list
This commit is contained in:
parent
e3b5aec70c
commit
8fca88b8f7
1 changed files with 2 additions and 2 deletions
|
|
@ -65,9 +65,9 @@
|
|||
class="px-2 text-sm text-center text-white select-none"
|
||||
>
|
||||
<div>Old summoner names</div>
|
||||
<ul class="pl-2 text-left">
|
||||
<ul class="pl-2 text-left list-disc list-inside">
|
||||
<li
|
||||
v-for="name in basic.account.names"
|
||||
v-for="name in basic.account.names.slice(0, -1)"
|
||||
:key="name.date"
|
||||
class="text-teal-400"
|
||||
>{{ name.name }}</li>
|
||||
|
|
|
|||
Loading…
Reference in a new issue