Skip to content

Commit

Permalink
fix(VAutocomplete, VSelect): fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tmasrat committed Dec 11, 2023
1 parent 76019c9 commit 44f3b54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,6 @@ export const VAutocomplete = genericComponent<new <
}

function onChange (e: Event) {
console.log('update', model.value, e)
if (matchesSelector(vTextFieldRef.value, ':autofill') || matchesSelector(vTextFieldRef.value, ':-webkit-autofill')) {
const item = items.value.find(item => item.title === (e.target as HTMLInputElement).value)
if (item) {
Expand Down Expand Up @@ -569,7 +568,7 @@ export const VAutocomplete = genericComponent<new <
tabindex="0"
text={ item.title }
disabled={ item.props.disabled }
onCloseChip ={ onChipClose }
onCloseChip={ onChipClose }
{ ...slotProps }
/>
) : (
Expand Down
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VSelect/VSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ export const VSelect = genericComponent<new <
tabindex="0"
text={ item.title }
disabled={ item.props.disabled }
onCloseChip ={ onChipClose }
onCloseChip={ onChipClose }
{ ...slotProps }
/>
) : (
Expand Down

0 comments on commit 44f3b54

Please sign in to comment.