use @input instead of @change for v-time-picker, fix #212

This commit is contained in:
lesion 2022-12-02 15:01:49 +01:00
parent 593cf6c6d6
commit 96d045a1bf
No known key found for this signature in database
GPG key ID: 352918250B012177

View file

@ -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")')