Skip to content

Commit

Permalink
resolves #1169
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed Aug 10, 2017
1 parent 4247179 commit cd16ec1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/text-fields/VTextField.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export default {
},
onChange (e) {
this.lazyValue = e.target.value
this.$emit('change', this.lazyValue)
this.$emit('change', this.lazyValue || null)
},
onInput (e) {
this.inputValue = e.target.value
Expand Down Expand Up @@ -180,7 +180,6 @@ export default {
on: {
...this.$listeners,
blur: this.blur,
change: this.onChange,
input: this.onInput,
focus: this.focus
},
Expand Down

0 comments on commit cd16ec1

Please sign in to comment.