Lint frontend
This commit is contained in:
@@ -27,7 +27,7 @@ const { data: stylesData }: PerkStylesResponse = await useFetch(
|
||||
)
|
||||
watch(
|
||||
() => props.runes,
|
||||
(newRunes, oldRunes) => {
|
||||
(_newRunes, _oldRunes) => {
|
||||
currentlySelectedPage.value = 0
|
||||
primaryStyles.value = Array(props.runes.length)
|
||||
secondaryStyles.value = Array(props.runes.length)
|
||||
@@ -72,7 +72,7 @@ function runeSelect(index: number) {
|
||||
:selection-ids="runes[currentlySelectedPage].selections"
|
||||
/>
|
||||
<div style="display: flex; margin-top: 20px; justify-content: center">
|
||||
<div v-for="(_, i) in runes" @click="runeSelect(i)">
|
||||
<div v-for="(_, i) in runes" :key="i" @click="runeSelect(i)">
|
||||
<div
|
||||
:class="
|
||||
'rune-selector-entry ' +
|
||||
|
||||
Reference in New Issue
Block a user