diff options
| author | Acid Chicken (硫酸鶏) <root@acid-chicken.com> | 2019-01-10 19:23:22 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-10 19:23:22 +0900 |
| commit | 2f10ff1a2ecca597b4b897ebbbe9e8beeff1e38c (patch) | |
| tree | ad3ca9bfa2290e8e68b92b8e031350db4981521d /src/client/app | |
| parent | Update CHANGELOG.md (diff) | |
| download | sharkey-2f10ff1a2ecca597b4b897ebbbe9e8beeff1e38c.tar.gz sharkey-2f10ff1a2ecca597b4b897ebbbe9e8beeff1e38c.tar.bz2 sharkey-2f10ff1a2ecca597b4b897ebbbe9e8beeff1e38c.zip | |
Fix style
Diffstat (limited to 'src/client/app')
| -rw-r--r-- | src/client/app/common/views/components/ui/input.vue | 2 |
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' |