From 2f10ff1a2ecca597b4b897ebbbe9e8beeff1e38c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Acid=20Chicken=20=28=E7=A1=AB=E9=85=B8=E9=B6=8F=29?= Date: Thu, 10 Jan 2019 19:23:22 +0900 Subject: [PATCH] Fix style --- src/client/app/common/views/components/ui/input.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'