Fix textarea keyboard navigation

This commit is contained in:
natsoni 2025-01-14 10:42:40 +09:00
parent 0a255d7fe5
commit f6ab2caaf9
No known key found for this signature in database
GPG Key ID: C65917583181743B

View File

@ -41,7 +41,7 @@ export class AppComponent implements OnInit {
@HostListener('document:keydown', ['$event']) @HostListener('document:keydown', ['$event'])
handleKeyboardEvents(event: KeyboardEvent) { handleKeyboardEvents(event: KeyboardEvent) {
if (event.target instanceof HTMLInputElement) { if (event.target instanceof HTMLInputElement || event.target instanceof HTMLTextAreaElement) {
return; return;
} }
// prevent arrow key horizontal scrolling // prevent arrow key horizontal scrolling