mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
use @input instead of @change for v-time-picker, fix #212
This commit is contained in:
parent
593cf6c6d6
commit
96d045a1bf
1 changed files with 2 additions and 2 deletions
|
@ -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")')
|
||||
|
||||
|
|
Loading…
Reference in a new issue