File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
projects/igniteui-angular/src/lib/calendar/days-view Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -385,7 +385,7 @@ export class IgxDaysViewComponent extends IgxCalendarBaseDirective implements Do
385385 public onKeydownArrow ( event : KeyboardEvent ) {
386386 event . preventDefault ( ) ;
387387 event . stopPropagation ( ) ;
388- const day = this . daysNavService . focusNextDate ( event . target as HTMLElement , event . key ) ;
388+ this . daysNavService . focusNextDate ( event . target as HTMLElement , event . key ) ;
389389 }
390390
391391 /**
Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ export class IgxDaysViewNavigationService {
4444 }
4545 if ( day && day . isFocusable ) {
4646 day . nativeElement . focus ( ) ;
47- return day ;
4847 }
4948 }
5049 break ;
@@ -60,7 +59,6 @@ export class IgxDaysViewNavigationService {
6059 }
6160 if ( day && day . isFocusable ) {
6261 day . nativeElement . focus ( ) ;
63- return day ;
6462 }
6563 }
6664 break ;
@@ -76,7 +74,6 @@ export class IgxDaysViewNavigationService {
7674 }
7775 if ( day && day . isFocusable ) {
7876 day . nativeElement . focus ( ) ;
79- return day ;
8077 }
8178 }
8279 break ;
@@ -92,7 +89,6 @@ export class IgxDaysViewNavigationService {
9289 }
9390 if ( day && day . isFocusable ) {
9491 day . nativeElement . focus ( ) ;
95- return day ;
9692 }
9793 }
9894 break ;
You can’t perform that action at this time.
0 commit comments