We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5ba973 commit f322654Copy full SHA for f322654
projects/igniteui-angular/src/lib/calendar/calendar-base.ts
@@ -375,7 +375,7 @@ export class IgxCalendarBase implements ControlValueAccessor {
375
const result = [];
376
start = this.getDateOnly(start);
377
end = this.getDateOnly(end);
378
- while (start.getTime() !== end.getTime()) {
+ while (start.getTime() < end.getTime()) {
379
start = this.calendarModel.timedelta(start, 'day', 1);
380
result.push(start);
381
}
0 commit comments