scheduler name can be empty

This commit is contained in:
proddy
2024-07-10 13:11:57 +02:00
parent 1da44afddb
commit 7b80524a5a

View File

@@ -305,6 +305,8 @@ export const schedulerItemValidation = (
name: [
{
type: 'string',
min: 0,
max: 15,
pattern: /^[a-zA-Z0-9_\\.]{1,15}$/,
message: "Must be <15 characters: alpha numeric, '_' or '.'"
},