- zoom dialog immagine
This commit is contained in:
@@ -573,7 +573,7 @@ export default defineComponent({
|
||||
tools.showPositiveNotif($q, t('db.recupdated'))
|
||||
|
||||
if (update) {
|
||||
const index = findEventIndex(contextDay)
|
||||
const index = findEventIndex(contextDay.value)
|
||||
if (index >= 0) {
|
||||
// @ts-ignore
|
||||
calendarStore.eventlist.splice(index, 1, { ...data })
|
||||
@@ -588,7 +588,7 @@ export default defineComponent({
|
||||
} else {
|
||||
tools.showNegativeNotif($q, t('db.recfailed'))
|
||||
// Undo...
|
||||
const index = findEventIndex(contextDay)
|
||||
const index = findEventIndex(contextDay.value)
|
||||
if (index >= 0) {
|
||||
// @ts-ignore
|
||||
calendarStore.eventlist.splice(index, 1, { ...contextDay })
|
||||
|
||||
Reference in New Issue
Block a user