Skip to content

Commit

Permalink
Fix send match score
Browse files Browse the repository at this point in the history
  • Loading branch information
KwikKill committed Oct 4, 2024
1 parent 7738cac commit 0bbb6b2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/views/Me.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ const rules_email = computed(() => ({
const v$_email = useVuelidate(rules_email, data_email);
const rules_score = computed(() => ({
score: { required },
times: { required },
}));
Expand Down Expand Up @@ -648,7 +649,7 @@ const openScoreModal = () => {
</template>
<template #title>
<h3 id="open_modal-title" class="text-white-900 text-base font-semibold leading-6">
Enregistrer les durées de match
Enregistrer les durées de match (en minute)
</h3>
</template>
<template #body>
Expand All @@ -667,9 +668,9 @@ const openScoreModal = () => {
:id="`input${n}`"
v-model="data_score.times[n]"
:class="{ error: context.invalid }"
aria-label="duration"
aria-label="duration (en minutes)"
class="w-24 border-2 bg-theme-bg"
placeholder="5 min"
placeholder="5"
required
type="number"
min="1"
Expand Down

0 comments on commit 0bbb6b2

Please sign in to comment.