From 74baebfb9f191ab7efa5bdd3b03cb2f9f06fd676 Mon Sep 17 00:00:00 2001 From: zaelgohary Date: Mon, 16 Feb 2026 10:18:49 +0200 Subject: [PATCH] Edit name validation to alphaNumeric Co-authored-by: Cursor --- packages/playground/src/weblets/tf_staticwebsite.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playground/src/weblets/tf_staticwebsite.vue b/packages/playground/src/weblets/tf_staticwebsite.vue index fac5ccfad5..78a01cf207 100644 --- a/packages/playground/src/weblets/tf_staticwebsite.vue +++ b/packages/playground/src/weblets/tf_staticwebsite.vue @@ -18,7 +18,7 @@ :value="name" :rules="[ validators.required('Name is required.'), - validators.IsAlphanumericExpectUnderscore('Name should consist of letters ,numbers and underscores only.'), + validators.isAlphanumeric('Name should consist of letters and numbers only.'), (name: string) => validators.isAlpha('Name must start with an alphabetical character.')(name[0]), validators.minLength('Name must be at least 2 characters.', 2), validators.maxLength('Name cannot exceed 15 characters.', 15),