diff --git a/frontend/src/components/Contributions/ContributionForm.vue b/frontend/src/components/Contributions/ContributionForm.vue index 84059dcbd..bdd25f23c 100644 --- a/frontend/src/components/Contributions/ContributionForm.vue +++ b/frontend/src/components/Contributions/ContributionForm.vue @@ -35,12 +35,12 @@ v-model="form.hours" :name="$t('form.hours')" :label="$t('form.hours')" - placeholder="0.5" + placeholder="0.25" :rules="{ required: true, - min: 0.5, + min: 0.25, max: validMaxTime, - gddCreationTime: [0.5, validMaxTime], + gddCreationTime: [0.25, validMaxTime], }" :validMaxTime="validMaxTime" @updateAmount="updateAmount"