Update frontend/pages/wedstrijd/alltimes.vue
All checks were successful
Build and Deploy / Deploy (push) Successful in 2m6s
All checks were successful
Build and Deploy / Deploy (push) Successful in 2m6s
This commit is contained in:
parent
408d592af0
commit
719286637e
@ -39,7 +39,7 @@
|
||||
<div class="flex gap-x-5">
|
||||
<div class="relative">
|
||||
<button @click.stop="showDeelnemersDropdown = !showDeelnemersDropdown" class="btn">Deelnemers <Icon size="1.2em" name="ion:arrow-down-b" /></button>
|
||||
<div v-if="showDeelnemersDropdown" v-on-click-outside.bubble="handleDeelnemersDropdown" class="w-48 mt-2 container absolute rounded-lg shadow p-3">
|
||||
<div v-if="showDeelnemersDropdown" v-on-click-outside.bubble="handleDeelnemersDropdown" class="w-48 mt-2 container absolute rounded-lg shadow p-3 overflow-y-auto">
|
||||
<ul class="space-y-2 text-default">
|
||||
<li v-for="competitor in contestStore.competitors" @click="competitor.checked = !competitor.checked" class="flex gap-x-1 items-center hover:cursor-pointer">
|
||||
<input v-model="competitor.checked" type="checkbox" class="checkbox">
|
||||
@ -68,7 +68,7 @@
|
||||
{{ contestStore.filteredTimings.filter(a => a.event === event.id)[0].time.minutes }}:{{ contestStore.filteredTimings.filter(a => a.event === event.id)[0].time.seconds }}:{{ contestStore.filteredTimings.filter(a => a.event === event.id)[0].time.milliseconds }} |
|
||||
</span>
|
||||
<span class="hidden md:inline-block mr-1">
|
||||
{{ contestStore.filteredTimings.filter(a => a.event === event.id)[0].contest.type }}
|
||||
{{ contestStore.filteredTimings.filter(a => a.event === event.id)[0].contest.type }} |
|
||||
{{ contestStore.filteredTimings.filter(a => a.event === event.id)[0].contest.date.toLocaleDateString('nl-NL') }} |
|
||||
{{ contestStore.filteredTimings.filter(a => a.event === event.id)[0].contest.location }} |
|
||||
</span>
|
||||
|
Loading…
Reference in New Issue
Block a user