From a7ef0d5be4618d14c9ca958690c121525e6e267f Mon Sep 17 00:00:00 2001 From: lesion Date: Sat, 11 Jun 2022 11:59:56 +0200 Subject: [PATCH] allow */5 in minutes selection --- components/DateInput.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/DateInput.vue b/components/DateInput.vue index ee8fd699..30381170 100644 --- a/components/DateInput.vue +++ b/components/DateInput.vue @@ -47,7 +47,6 @@ v-col(cols=12) :disabled='!value.from' :prepend-icon="mdiClockTimeFourOutline" :rules="[$validators.required('event.from')]" - readonly v-bind="attrs" v-on="on") v-time-picker( @@ -72,7 +71,6 @@ v-col(cols=12) :value="dueHour" :disabled='!fromHour' :prepend-icon="mdiClockTimeEightOutline" - readonly v-bind="attrs" v-on="on") v-time-picker( @@ -103,7 +101,7 @@ export default { data () { return { mdiClockTimeFourOutline, mdiClockTimeEightOutline, - allowedMinutes: [0, 15, 30, 45], + allowedMinutes: [0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55], menuFromHour: false, menuDueHour: false, type: 'normal',