Skip to content

Commit

Permalink
fix(VTextarea): up/down/home/end keys inside VList (#19674)
Browse files Browse the repository at this point in the history
fixes #19092
  • Loading branch information
MetRonnie authored Apr 23, 2024
1 parent 3d810e1 commit 1c26e14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VList/VList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export const VList = genericComponent<new <
function onKeydown (e: KeyboardEvent) {
const target = e.target as HTMLElement

if (!contentRef.value || target.tagName === 'INPUT') return
if (!contentRef.value || ['INPUT', 'TEXTAREA'].includes(target.tagName)) return

if (e.key === 'ArrowDown') {
focus('next')
Expand Down

0 comments on commit 1c26e14

Please sign in to comment.