We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23dfbb4 commit f500c5bCopy full SHA for f500c5b
packages/vuetify/src/components/VList/VList.tsx
@@ -221,7 +221,11 @@ export const VList = genericComponent<new <
221
function onKeydown (e: KeyboardEvent) {
222
const target = e.target as HTMLElement
223
224
- if (!contentRef.value || ['INPUT', 'TEXTAREA'].includes(target.tagName)) return
+ if (!contentRef.value ||
225
+ (target.tagName === 'INPUT' && ['Home', 'End'].includes(e.key)) ||
226
+ target.tagName === 'TEXTAREA') {
227
+ return
228
+ }
229
230
if (e.key === 'ArrowDown') {
231
focus('next')
0 commit comments