Skip to content

Commit 57c73ca

Browse files
committed
chore(*): return nav service to initial state
1 parent 7084415 commit 57c73ca

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

projects/igniteui-angular/src/lib/calendar/days-view/daysview-navigation.service.ts

+4
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export class IgxDaysViewNavigationService {
4444
}
4545
if (day && day.isFocusable) {
4646
day.nativeElement.focus();
47+
return;
4748
}
4849
}
4950
break;
@@ -59,6 +60,7 @@ export class IgxDaysViewNavigationService {
5960
}
6061
if (day && day.isFocusable) {
6162
day.nativeElement.focus();
63+
return;
6264
}
6365
}
6466
break;
@@ -74,6 +76,7 @@ export class IgxDaysViewNavigationService {
7476
}
7577
if (day && day.isFocusable) {
7678
day.nativeElement.focus();
79+
return;
7780
}
7881
}
7982
break;
@@ -89,6 +92,7 @@ export class IgxDaysViewNavigationService {
8992
}
9093
if (day && day.isFocusable) {
9194
day.nativeElement.focus();
95+
return;
9296
}
9397
}
9498
break;

0 commit comments

Comments
 (0)