Skip to content

Commit

Permalink
Merge pull request #14392 from primefaces/issue-14368
Browse files Browse the repository at this point in the history
Fixed #14368 - Accordion | TextArea shortcuts are not working when us…
  • Loading branch information
cetincakiroglu authored Dec 20, 2023
2 parents 07a1f30 + df69ea9 commit 8d83320
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/app/components/accordion/accordion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -449,11 +449,15 @@ export class Accordion implements BlockableUI, AfterContentInit, OnDestroy {
break;

case 'Home':
this.onTabHomeKey(event);
if (!event.shiftKey) {
this.onTabHomeKey(event);
}
break;

case 'End':
this.onTabEndKey(event);
if (!event.shiftKey) {
this.onTabEndKey(event);
}
break;
}
}
Expand Down

0 comments on commit 8d83320

Please sign in to comment.