We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f414ca0 commit dc27099Copy full SHA for dc27099
packages/playground/src/weblets/tf_staticwebsite.vue
@@ -18,7 +18,7 @@
18
:value="name"
19
:rules="[
20
validators.required('Name is required.'),
21
- validators.IsAlphanumericExpectUnderscore('Name should consist of letters ,numbers and underscores only.'),
+ validators.isAlphanumeric('Name should consist of letters and numbers only.'),
22
(name: string) => validators.isAlpha('Name must start with an alphabetical character.')(name[0]),
23
validators.minLength('Name must be at least 2 characters.', 2),
24
validators.maxLength('Name cannot exceed 15 characters.', 15),
0 commit comments