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