fix: Standardize name validation on agent / profile pages (#1720)
This commit is contained in:
@@ -102,7 +102,7 @@ export default {
|
||||
validations: {
|
||||
agentName: {
|
||||
required,
|
||||
minLength: minLength(4),
|
||||
minLength: minLength(1),
|
||||
},
|
||||
agentEmail: {
|
||||
required,
|
||||
|
||||
@@ -112,7 +112,7 @@ export default {
|
||||
validations: {
|
||||
agentName: {
|
||||
required,
|
||||
minLength: minLength(4),
|
||||
minLength: minLength(1),
|
||||
},
|
||||
agentType: {
|
||||
required,
|
||||
|
||||
@@ -136,6 +136,7 @@ export default {
|
||||
validations: {
|
||||
name: {
|
||||
required,
|
||||
minLength: minLength(1),
|
||||
},
|
||||
displayName: {},
|
||||
email: {
|
||||
|
||||
Reference in New Issue
Block a user