summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/app/common/views/components/ui/input.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/ui/input.vue b/src/client/app/common/views/components/ui/input.vue
index 2198b5bacb..e3b7551c29 100644
--- a/src/client/app/common/views/components/ui/input.vue
+++ b/src/client/app/common/views/components/ui/input.vue
@@ -190,7 +190,7 @@ export default Vue.extend({
this.$refs.input.focus();
},
togglePassword() {
- if(this.type == 'password') {
+ if (this.type == 'password') {
this.type = 'text'
} else {
this.type = 'password'