bugfix: fix IDE warning about implicit any type

This commit is contained in:
Settel 2022-09-02 22:13:26 +02:00
parent 61c9adbc23
commit 056ff2bdeb

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="player-list"> <div class="player-list">
<div v-for="player in players" :key="player.id"> <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>
</div> </div>
</template> </template>