diff --git a/frontend/src/components/Contributions/ContributionForm.vue b/frontend/src/components/Contributions/ContributionForm.vue index 546e86d11..25f03812a 100644 --- a/frontend/src/components/Contributions/ContributionForm.vue +++ b/frontend/src/components/Contributions/ContributionForm.vue @@ -46,8 +46,15 @@ v-model="form.time" :name="$t('form.time')" :label="$t('form.time')" - placeholder="1" - :rules="{ required: true, gddCreationTime: [1, validMaxTime] }" + placeholder="0.5" + :rules="{ + required: true, + min: 0.5, + max: validMaxTime, + gddCreationTime: [0.5, validMaxTime], + }" + :validMaxTime="validMaxTime" + @updateAmount="updateAmount" >