mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
ユーザー名の少なくとも3文字以上という制限を撤廃できていなかった
This commit is contained in:
parent
2a2bc2556c
commit
faf738d4cb
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue