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(VAutocomplete/VCombobox): allow delete in single selection mode #19387

Merged
merged 3 commits into from
Mar 13, 2024

Conversation

yuwu9145
Copy link
Member

@yuwu9145 yuwu9145 commented Mar 13, 2024

fixes #19369

In multiple selection mode, Backspace key selects the last item first then remove on second Backspace event.

In single selection mode, remove selected item directly on first Backspace event.

Description

Markup:

<template>
  <v-autocomplete
    label="Autocomplete"
    chips
    :items="['California', 'Colorado', 'Florida', 'Georgia', 'Texas', 'Wyoming']"
  />
  <v-combobox
    chips
    label="Combobox"
    :items="['California', 'Colorado', 'Florida', 'Georgia', 'Texas', 'Wyoming']"
  />
</template>

@johnleider johnleider added T: bug Functionality that does not work as intended/expected C: VCombobox VCombobox labels Mar 13, 2024
@johnleider johnleider added this to the v3.5.x milestone Mar 13, 2024
@johnleider johnleider changed the title fix(VAutocomplete/VCombobox): Allow delete in single selection mode fix(VAutocomplete/VCombobox): allow delete in single selection mode Mar 13, 2024
@johnleider johnleider added the C: VAutocomplete VAutocomplete label Mar 13, 2024
@johnleider johnleider merged commit a95aeb2 into master Mar 13, 2024
14 of 16 checks passed
@johnleider johnleider deleted the fix-19369 branch March 13, 2024 18:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VAutocomplete VAutocomplete C: VCombobox VCombobox T: bug Functionality that does not work as intended/expected
Projects
None yet
2 participants