We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7687a76 commit 5b569feCopy full SHA for 5b569fe
projects/igniteui-angular/src/lib/calendar/days-view/days-view.component.ts
@@ -300,7 +300,9 @@ export class IgxDaysViewComponent extends IgxCalendarBase implements DoCheck {
300
*/
301
public selectDay(event) {
302
this.selectDateFromClient(event.date);
303
- this.deselectDateInMonthViews(event.date);
+ if (this.selection === 'multi') {
304
+ this.deselectDateInMonthViews(event.date);
305
+ }
306
this.onDateSelection.emit(event);
307
308
this.onSelection.emit(this.selectedDates);
0 commit comments