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>
<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>