Skip to content

Commit

Permalink
Removes extra spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Kokovin committed Feb 17, 2021
1 parent dd964bf commit 74c52dd
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/components/UiTextField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export default {
prop: 'value',
event: 'input',
},
props: {
additionalInfo: {
default: '',
Expand Down Expand Up @@ -74,7 +73,6 @@ export default {
this.inputValue = val;
},
},
methods: {
handleInput() {
const prevValue = this.value || '';
Expand All @@ -83,7 +81,6 @@ export default {
this.$emit('input', value);
}
},
togglePasswordInputType() {
this.innerType = this.innerType === 'text' ? 'password' : 'text';
},
Expand Down

0 comments on commit 74c52dd

Please sign in to comment.