workspace and request names can be 100 chars long
This commit is contained in:
@@ -10,7 +10,7 @@ class WorkspaceForm(ValidatedForm):
|
||||
validators=[
|
||||
Length(
|
||||
min=4,
|
||||
max=50,
|
||||
max=100,
|
||||
message="Workspace names must be at least 4 and not more than 50 characters",
|
||||
)
|
||||
],
|
||||
|
@@ -81,7 +81,7 @@ export default {
|
||||
},
|
||||
workspaceName: {
|
||||
mask: false,
|
||||
match: /^.{4,50}$/,
|
||||
match: /^.{4,100}$/,
|
||||
unmask: [],
|
||||
validationError: 'Workspace and request names must be at least 4 and not more than 50 characters'
|
||||
},
|
||||
|
Reference in New Issue
Block a user