From f433a884ec9270b62c7faec5b8926a94011fc2df Mon Sep 17 00:00:00 2001 From: amiraabouhadid Date: Thu, 24 Oct 2024 15:37:18 +0300 Subject: [PATCH] fix max name length --- packages/playground/src/weblets/tf_gitea.vue | 2 +- packages/playground/src/weblets/tf_node_pilot.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/playground/src/weblets/tf_gitea.vue b/packages/playground/src/weblets/tf_gitea.vue index 855436af24..f676269109 100644 --- a/packages/playground/src/weblets/tf_gitea.vue +++ b/packages/playground/src/weblets/tf_gitea.vue @@ -28,7 +28,7 @@ validators.isAlphanumeric('Name should consist of alphabets & 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), + validators.maxLength('Name cannot exceed 35 characters.', 35), ]" #="{ props }" > diff --git a/packages/playground/src/weblets/tf_node_pilot.vue b/packages/playground/src/weblets/tf_node_pilot.vue index b7d1b39c3b..e092a6a18b 100644 --- a/packages/playground/src/weblets/tf_node_pilot.vue +++ b/packages/playground/src/weblets/tf_node_pilot.vue @@ -19,7 +19,7 @@ validators.IsAlphanumericExpectUnderscore('Name should consist of letters ,numbers and underscores 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), + validators.maxLength('Name cannot exceed 35 characters.', 35), ]" #="{ props }" >