From 96d045a1bf839826a938fa39d5f6c0bf31f9f416 Mon Sep 17 00:00:00 2001 From: lesion Date: Fri, 2 Dec 2022 15:01:49 +0100 Subject: [PATCH] use @input instead of @change for v-time-picker, fix #212 --- components/DateInput.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/DateInput.vue b/components/DateInput.vue index d43db681..7534f7f2 100644 --- a/components/DateInput.vue +++ b/components/DateInput.vue @@ -60,7 +60,7 @@ v-col(cols=12) :allowedMinutes='allowedMinutes' format='24hr' @click:minute='menuFromHour = false' - @change='hr => change("fromHour", hr)') + @input='hr => change("fromHour", hr)') v-col.col-12.col-sm-6 @@ -88,7 +88,7 @@ v-col(cols=12) :allowedMinutes='allowedMinutes' format='24hr' @click:minute='menuDueHour = false' - @change='hr => change("dueHour", hr)') + @input='hr => change("dueHour", hr)') List(v-if='type === "normal" && todayEvents.length' :events='todayEvents' :title='$t("event.same_day")')