summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorAcid Chicken (硫酸鶏) <root@acid-chicken.com>2019-01-10 19:23:22 +0900
committerGitHub <noreply@github.com>2019-01-10 19:23:22 +0900
commit2f10ff1a2ecca597b4b897ebbbe9e8beeff1e38c (patch)
treead3ca9bfa2290e8e68b92b8e031350db4981521d /src/client
parentUpdate CHANGELOG.md (diff)
downloadsharkey-2f10ff1a2ecca597b4b897ebbbe9e8beeff1e38c.tar.gz
sharkey-2f10ff1a2ecca597b4b897ebbbe9e8beeff1e38c.tar.bz2
sharkey-2f10ff1a2ecca597b4b897ebbbe9e8beeff1e38c.zip
Fix style
Diffstat (limited to 'src/client')
-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'