MT#58239 time selector of the REMINDER page doesn't allow to select minutes

Change-Id: I5ba9446fe0aa3ac5977b44254caf2f2bfda0a047
mr12.0
Hugo Zigha 2 years ago committed by Hugo Zigha
parent 4d76a53c4a
commit 74ff3a2274

@ -47,13 +47,12 @@
<q-item>
<q-item-section>
<q-input
:model-value="reminderTime"
v-model="reminderTime"
:loading="isReminderLoading"
data-cy="csc-reminder-time"
fill-mask="_"
mask="##:##"
dense
@focus="$refs.timePopup.show()"
>
<template
#loading
@ -75,14 +74,21 @@
ref="timePopup"
>
<q-time
:model-value="reminderTime"
v-model="reminderTime"
format24h
now-btn
flat
mask="HH:mm"
color="primary"
@update:model-value="timeUpdate"
>
<q-btn
v-close-popup
:label="$t('Close')"
color="primary"
flat
/>
</q-time>
</q-popup-proxy>
</q-btn>
</template>
@ -181,7 +187,6 @@ export default {
'updateRecurrence'
]),
timeUpdate (time) {
this.$refs.timePopup.hide()
this.updateTime(time)
},
mapRecurrence (recurrence) {

Loading…
Cancel
Save