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

Loading…
Cancel
Save