+
+
@@ -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;
+ }
+ }
+ }
}