fix events filtering in homepage for multidate event
This commit is contained in:
@@ -80,7 +80,7 @@ export default {
|
||||
if (this.selectedDay) {
|
||||
const min = dayjs.tz(this.selectedDay).startOf('day').unix()
|
||||
const max = dayjs.tz(this.selectedDay).endOf('day').unix()
|
||||
return this.events.filter(e => (e.start_datetime <= max && e.start_datetime >= min))
|
||||
return this.events.filter(e => (e.start_datetime <= max && e.end_datetime >= min))
|
||||
} else if (this.isCurrentMonth) {
|
||||
return this.events.filter(e => e.end_datetime ? e.end_datetime > now : e.start_datetime + 2 * 60 * 60 > now)
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user