Hi,
I have events with reccurenceRule with start time setted to 00:00:01:
{ id: 4, title: '1 OK', start: new Date('2020-10-19T00:00:01'), end: new Date('2020-10-19T10:30:00'), recurrenceRule: 'FREQ=WEEKLY;UNTIL=20201028;BYDAY=MO', }, { id: 5, title: '2 OK', start: new Date('2020-10-19T00:00:01'), end: new Date('2020-10-19T10:30:00'), recurrenceRule: 'FREQ=WEEKLY;UNTIL=20201028;BYDAY=TU', }, { id: 6, title: '3 OK', start: new Date('2020-10-19T00:00:01'), end: new Date('2020-10-19T10:30:00'), recurrenceRule: 'FREQ=WEEKLY;UNTIL=20201028;BYDAY=WE', },
After changing start time to be 00:00:00:
{ id: 1, title: '1 BAD', start: new Date('2020-10-05T00:00:00'), end: new Date('2020-10-05T10:30:00'), recurrenceRule: 'FREQ=WEEKLY;UNTIL=20201014;BYDAY=MO', }, { id: 2, title: '2 BAD', start: new Date('2020-10-05T00:00:00'), end: new Date('2020-10-05T10:30:00'), recurrenceRule: 'FREQ=WEEKLY;UNTIL=20201014;BYDAY=TU', }, { id: 3, title: '3 BAD', start: new Date('2020-10-05T00:00:00'), end: new Date('2020-10-05T10:30:00'), recurrenceRule: 'FREQ=WEEKLY;UNTIL=20201014;BYDAY=WE', },
StackBlitz: https://stackblitz.com/edit/angular-pusn73-utpuwe?file=src%2Fapp%2Fapp.component.ts