From 0320d3bab10dd317b1a1eb36f2a8e4f00846de5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Tue, 6 Apr 2021 14:59:49 +0200 Subject: [PATCH] Fix registration slider for invite code with inviteCode, email, and nonce --- webapp/pages/registration.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/webapp/pages/registration.vue b/webapp/pages/registration.vue index 9c498093c..a43810dc4 100644 --- a/webapp/pages/registration.vue +++ b/webapp/pages/registration.vue @@ -51,8 +51,14 @@ export default { this.method === 'invite-mail' || (this.method === 'invite-code' && this.inviteRegistration) ) { - if (this.method === 'invite-code' && this.inviteCode && this.nonce && this.email) + if ( + this.method === 'invite-code' && + this.overwriteSliderData.collectedInputData.inviteCode && + this.overwriteSliderData.collectedInputData.nonce && + this.overwriteSliderData.collectedInputData.email + ) { return { method: this.method, activePage: 'enter-nonce' } + } return { method: this.method, activePage: null } } return {