Update AdminInvite component, fix email regex

pull/4036/head
Daniel Supernault 3 years ago
parent 48485d44e7
commit 2aea77d3d2
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -372,7 +372,7 @@
return false; return false;
} }
return /^[a-z0-9.]{1,64}@[a-z0-9.]{1,64}$/i.test(this.form.email); return /^[a-zA-Z]+[a-zA-Z0-9_.-]+@[a-zA-Z0-9_.-]+[a-zA-Z]$/i.test(this.form.email);
}, },
handleRegistration() { handleRegistration() {

Loading…
Cancel
Save