diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-04-14 23:41:25 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-14 23:41:25 +0900 |
| commit | 93b0fe821b88624177b03438708aa56c41e85adc (patch) | |
| tree | 5dc6408efdc6016196336821bb90a25e98b7aaa3 /src/client/app/dev | |
| parent | Merge pull request #1469 from tamaina/snake_case (diff) | |
| download | sharkey-93b0fe821b88624177b03438708aa56c41e85adc.tar.gz sharkey-93b0fe821b88624177b03438708aa56c41e85adc.tar.bz2 sharkey-93b0fe821b88624177b03438708aa56c41e85adc.zip | |
Fix bug
Diffstat (limited to 'src/client/app/dev')
| -rw-r--r-- | src/client/app/dev/views/new-app.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/dev/views/new-app.vue b/src/client/app/dev/views/new-app.vue index b293b03752..bf19e6da57 100644 --- a/src/client/app/dev/views/new-app.vue +++ b/src/client/app/dev/views/new-app.vue @@ -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; |