aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEkaterina Vaartis <vaartis@cock.li>2018-12-16 20:55:09 +0300
committerEkaterina Vaartis <vaartis@cock.li>2018-12-16 20:55:09 +0300
commit3c9c8052f7c0f55940033a787e48578d38ab06ac (patch)
treeda3df9850a90f1a473fcf6476274a87bb36718ba /src
parenta525df32c9bbba873ecca2939b013985c51d27bc (diff)
Fix style
Diffstat (limited to 'src')
-rw-r--r--src/components/registration/registration.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/registration/registration.js b/src/components/registration/registration.js
index 7a742b3d..0c65ac5d 100644
--- a/src/components/registration/registration.js
+++ b/src/components/registration/registration.js
@@ -31,7 +31,7 @@ const registration = {
this.$router.push('/main/all')
}
- this.getCaptcha().then(cpt => this.captcha = cpt)
+ this.getCaptcha().then(cpt => { this.captcha = cpt })
},
computed: {
token () { return this.$route.params.token },
@@ -48,8 +48,8 @@ const registration = {
async submit () {
this.user.nickname = this.user.username
this.user.token = this.token
- this.user.captcha_solution = this.captcha.solution;
- this.user.captcha_token = this.captcha.token;
+ this.user.captcha_solution = this.captcha.solution
+ this.user.captcha_token = this.captcha.token
this.$v.$touch()