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 6f2d22c commit 8d57067Copy full SHA for 8d57067
ui/src/components/common/EditableLabelDuration.vue
@@ -1,5 +1,5 @@
1
<template>
2
- <span class="editable-label">
+ <span>
3
<span v-show="g.edit === false"
4
@dblclick="edit"
5
ref="span-id"
ui/src/components/team/TeamYellowCards.vue
@@ -23,10 +23,9 @@
23
<b-collapse id="collapseDurations" class="mt-2">
24
<EditableLabelDuration
25
class="editable-label"
26
- v-bind:key="time"
27
- v-for="(time, index) in yellowCardTimes"
28
- :value="time"
29
- :callback="(v) => updateCardTime(v, index)"/>
+ v-for="(cardTime, cardId) in yellowCardTimes"
+ :value="cardTime"
+ :callback="(v) => updateCardTime(v, cardId)"/>
30
</b-collapse>
31
</span>
32
</template>
0 commit comments