This is an automated email from the ASF dual-hosted git repository.

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new 611caaae2 [INLONG-7045][Dashboard] Data stream group ID, character 
verification (#7045) (#7046)
611caaae2 is described below

commit 611caaae24bcf51a9314b1d68357de48dab539c8
Author: kinfuy <37766068+kin...@users.noreply.github.com>
AuthorDate: Sat Dec 24 11:17:18 2022 +0800

    [INLONG-7045][Dashboard] Data stream group ID, character verification 
(#7045) (#7046)
---
 inlong-dashboard/src/metas/groups/common/GroupDefaultInfo.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/inlong-dashboard/src/metas/groups/common/GroupDefaultInfo.ts 
b/inlong-dashboard/src/metas/groups/common/GroupDefaultInfo.ts
index fded2e2ee..3ee94c79e 100644
--- a/inlong-dashboard/src/metas/groups/common/GroupDefaultInfo.ts
+++ b/inlong-dashboard/src/metas/groups/common/GroupDefaultInfo.ts
@@ -39,12 +39,12 @@ export class GroupDefaultInfo implements DataWithBackend, 
RenderRow, RenderList
   @FieldDecorator({
     type: 'input',
     props: {
-      maxLength: 32,
+      maxLength: 100,
     },
     rules: [
       { required: true },
       {
-        pattern: /^[a-z_\-\d]+$/,
+        pattern: /^[a-z_0-9]+$/,
         message: i18n.t('meta.Group.InlongGroupIdRules'),
       },
     ],

Reply via email to