Fix #4586 Crashes when Tab pressed and calendar overlay is not showing - primevue2

pull/4587/head
Chingiz Mammadov 2023-10-11 01:04:04 +04:00
parent 4dd5b46a2f
commit 3f6dee1e1e
No known key found for this signature in database
GPG Key ID: ABCB4517F50A9077
1 changed files with 3 additions and 1 deletions

View File

@ -2245,7 +2245,9 @@ export default {
}
}
else if (event.keyCode === 9) {
DomHandler.getFocusableElements($vm.$refs.overlay).forEach(el => el.tabIndex = '-1');
if($vm.showOnFocus){
DomHandler.getFocusableElements($vm.$refs.overlay).forEach(el => el.tabIndex = '-1');
}
if ($vm.overlayVisible) {
$vm.overlayVisible = false;
}