1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 18:55:56 +02:00
This commit is contained in:
syuilo
2018-04-14 23:41:25 +09:00
committed by GitHub
parent 416d8f24ef
commit 93b0fe821b

View File

@@ -66,7 +66,7 @@ export default Vue.extend({
const err =
!this.nid.match(/^[a-zA-Z0-9_]+$/) ? 'invalid-format' :
this.nid.length < 3 ? 'min-range' :
this.nid.length < 1 ? 'min-range' :
this.nid.length > 30 ? 'max-range' :
null;