Skip to content
Snippets Groups Projects
Unverified Commit 3569a782 authored by tamaina's avatar tamaina Committed by GitHub
Browse files

ユーザー名の少なくとも3文字以上という制限を撤廃できていなかった

parent 18580536
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment