fix 'same day events'

This commit is contained in:
lesion 2022-03-07 13:23:15 +01:00
parent bcaf27eb3b
commit 0e2f4d10f7
No known key found for this signature in database
GPG key ID: 352918250B012177

View file

@ -78,7 +78,7 @@ export default {
todayEvents () {
const start = dayjs(this.value.from).startOf('day').unix()
const end = dayjs(this.value.from).endOf('day').unix()
const events = this.events.filter(e => (this.event.id && e.id !== this.event.id) && e.start_datetime >= start && e.start_datetime <= end)
const events = this.events.filter(e => e.start_datetime >= start && e.start_datetime <= end)
return events
},
attributes () {
@ -161,8 +161,10 @@ export default {
this.type = 'normal'
}
this.events = await this.$api.getEvents({
start: dayjs().unix()
start: dayjs().unix(),
show_recurrent: true
})
this.events = this.events.filter(e => e.id !== this.event.id)
},
methods: {
updateRecurrent (value) {