Skip to content

Commit

Permalink
Merge pull request TencentBlueKing#10957 from vhwweng/hw-fix_09/12
Browse files Browse the repository at this point in the history
fix:stream新建环境名称正则错误修复 TencentBlueKing#10939
  • Loading branch information
bkci-bot committed Sep 13, 2024
2 parents 37370f4 + b306e45 commit 7dab682
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
nodeHashIds: []
},
nameRule: {
validator: (val) => (/^[a-zA-Z0-9-]{1,64}$/.test(val)),
validator: (val) => (/^[a-zA-Z0-9-_]{1,64}$/.test(val)),
message: this.$t('setting.agent.poolNamePlaceholder'),
trigger: 'blur'
},
Expand Down

0 comments on commit 7dab682

Please sign in to comment.