usernamenocheck

This commit is contained in:
Z 2019-09-30 19:40:04 -05:00
parent eb2282d31a
commit 9defc58b73
1 changed files with 2 additions and 1 deletions

View File

@ -83,7 +83,8 @@ export default {
data() {
const validateUsername = (rule, value, callback) => {
if (!validUsername(value)) {
callback(new Error('Please enter the correct user name'))
callback()
// callback(new Error('Please enter the correct user name'))
} else {
callback()
}