Skip to content

Commit

Permalink
fix(VAutocomplete): remove unused allowOverflow prop
Browse files Browse the repository at this point in the history
closes #16008
  • Loading branch information
KaelWD committed Nov 4, 2022
1 parent ed4a5d5 commit f16c2c5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion packages/api-generator/src/locale/en/v-autocomplete.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"props": {
"allowOverflow": "Allow the menu to overflow off the screen",
"autoSelectFirst": "When searching, will always highlight the first option",
"dark": "Applies the dark theme variant to the component. This will default the components color to _white_ unless you've configured your [application theme](/customization/theme) to **dark** or if you are using the **color** prop on the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html).",
"filter": "The filtering algorithm used when searching. [example](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts#L40)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ export default VSelect.extend({
name: 'v-autocomplete',

props: {
allowOverflow: {
type: Boolean,
default: true,
},
autoSelectFirst: {
type: Boolean,
default: false,
Expand Down

0 comments on commit f16c2c5

Please sign in to comment.