mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
ユーザー名の少なくとも3文字以上という制限を撤廃できていなかった
This commit is contained in:
parent
185805363d
commit
3569a7820e
@ -77,7 +77,7 @@ export default Vue.extend({
|
||||
|
||||
const err =
|
||||
!this.username.match(/^[a-zA-Z0-9_]+$/) ? 'invalid-format' :
|
||||
this.username.length < 3 ? 'min-range' :
|
||||
this.username.length < 1 ? 'min-range' :
|
||||
this.username.length > 20 ? 'max-range' :
|
||||
null;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user