bugfix: fix IDE warning about implicit any type
This commit is contained in:
parent
61c9adbc23
commit
056ff2bdeb
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="player-list">
|
||||
<div v-for="player in players" :key="player.id">
|
||||
<Player :player="player" :show-score="showScore" :show-checkbox="showCheckbox" :checked="round.selections[player.id]" />
|
||||
<Player :player="player" :show-score="showScore" :show-checkbox="showCheckbox" :checked="round.selections[player.id as any]" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
Loading…
Reference in New Issue
Block a user