diff --git a/src/client/app/common/views/components/ui/input.vue b/src/client/app/common/views/components/ui/input.vue index 2198b5bac..e3b7551c2 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'