Skip to content

Commit 15beb4f

Browse files
authored
When validating the minimum minute frequency, actually use the value in the between rule. (baserow#4197)
1 parent eec9a47 commit 15beb4f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

web-frontend/modules/integrations/core/components/services/CorePeriodicServiceForm.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,9 @@ export default {
225225
max: 59,
226226
})
227227
: this.$t('error.minMaxValueField', { min: 0, max: 59 }),
228-
this.showMinuteFrequencyField ? between(1, 59) : between(0, 59)
228+
this.showMinuteFrequencyField
229+
? between(this.minimumMinuteFrequency, 59)
230+
: between(0, 59)
229231
),
230232
},
231233
hour: {

0 commit comments

Comments
 (0)