Skip to content

Commit

Permalink
revert(VSelect): revert commit 980142f
Browse files Browse the repository at this point in the history
fix caused issue with append/prepend slots

closes #5871
  • Loading branch information
johnleider committed Dec 12, 2018
1 parent 4e91a9c commit d3bc050
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/vuetify/src/components/VSelect/VSelect.js
Expand Up @@ -532,7 +532,6 @@ export default {
return getPropertyFromItem(item, this.itemValue, this.getText(item))
},
onBlur (e) {
this.blur()
this.$emit('blur', e)
},
onChipInput (item) {
Expand All @@ -557,7 +556,7 @@ export default {
}
},
onEnterDown () {
this.$emit('blur', undefined)
this.onBlur()
},
onEscDown (e) {
e.preventDefault()
Expand Down

0 comments on commit d3bc050

Please sign in to comment.