From 4de390eeba8a7eec4e36f5d60fd532cfff709ef0 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?=
 <root@acid-chicken.com>
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'