Merge pull request #892 from dod-ccpo/fix-email-validation

Allow capital letters in email TLD
This commit is contained in:
richard-dds
2019-06-11 17:04:08 -04:00
committed by GitHub

View File

@@ -36,7 +36,7 @@ export default {
},
email: {
mask: emailMask,
match: /^.+@[^.].*\.[a-z]{2,10}$/,
match: /^.+@[^.].*\.[a-zA-Z]{2,10}$/,
unmask: [],
validationError: 'Please enter a valid e-mail address',
},