Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(VTextarea): up/down/home/end keys inside VList #19674

Merged
merged 1 commit into from
Apr 23, 2024

Conversation

MetRonnie
Copy link
Contributor

Description

Fixes #19092

Up/down/home/end keys were not working in a VTextarea that is inside a VList

Markup:

<template>
  <v-form>
    <v-list>
      <v-list-item>
        <v-textarea
          name="input-1"
          variant="filled"
          auto-grow
          rows="1"
          :model-value="text"
        />
      </v-list-item>
    </v-list>
  </v-form>
</template>

<script setup>
  const text = `The Woodman set to work at once,
and so sharp was his
axe that the tree was soon
chopped nearly through.`
</script>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VTextarea VTextarea T: bug Functionality that does not work as intended/expected
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug Report][3.5.1] VTextarea: up/down/home/end keys do not work when it is inside VListItem
2 participants