mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-29 05:49:07 +08:00
fix: 修改用户名长度限制 (#877)
This commit is contained in:
parent
2fd97b1753
commit
c69d162f5a
@ -47,7 +47,7 @@ const checkName = (rule: any, value: any, callback: any) => {
|
|||||||
if (value === '' || typeof value === 'undefined' || value == null) {
|
if (value === '' || typeof value === 'undefined' || value == null) {
|
||||||
callback(new Error(i18n.global.t('commons.rule.commonName')));
|
callback(new Error(i18n.global.t('commons.rule.commonName')));
|
||||||
} else {
|
} else {
|
||||||
const reg = /^[a-zA-Z0-9\u4e00-\u9fa5]{1}[a-zA-Z0-9_.\u4e00-\u9fa5-]{0,30}$/;
|
const reg = /^[a-zA-Z0-9\u4e00-\u9fa5]{1}[a-zA-Z0-9_.\u4e00-\u9fa5-]{1,29}$/;
|
||||||
if (!reg.test(value) && value !== '') {
|
if (!reg.test(value) && value !== '') {
|
||||||
callback(new Error(i18n.global.t('commons.rule.commonName')));
|
callback(new Error(i18n.global.t('commons.rule.commonName')));
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user