diff --git a/components/Account.vue b/components/Account.vue index 85a83b31..77996478 100644 --- a/components/Account.vue +++ b/components/Account.vue @@ -97,8 +97,8 @@
- -
+ +
@@ -208,6 +208,7 @@ gravatar, + showCaptcha: false, captchaToken: null, universalDomains: process.env.ALL_LOCALES_URLS.split(',').filter(x => x !== process.env.BASE_URL), @@ -353,6 +354,13 @@ return this.email && this.captchaToken; } }, + watch: { + email(v) { + if (v !== this.$user().email) { + this.showCaptcha = true; + } + } + } }