We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c903abe commit bdafa0bCopy full SHA for bdafa0b
src/components/TeamStatus.vue
@@ -18,8 +18,11 @@
18
{{team.maxAllowedBots}}
19
</span>
20
<div class="cardTimers">
21
- <CardTimer v-for="cardTime in team.yellowCardTimes.slice(0,3)"
+ <span v-for="(cardTime, index) in team.yellowCardTimes.slice(0,3)" :key="index">
22
+ <CardTimer
23
:cardTimer="cardTime" />
24
+ </span>
25
+
26
27
<div class="additional-cards" v-if="team.yellowCardTimes.length > 3"> + {{ team.yellowCardTimes.length - 3}} more </div>
28
</div>
0 commit comments