summaryrefslogtreecommitdiff
path: root/src/client/app/dev
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-04-14 23:41:25 +0900
committerGitHub <noreply@github.com>2018-04-14 23:41:25 +0900
commit93b0fe821b88624177b03438708aa56c41e85adc (patch)
tree5dc6408efdc6016196336821bb90a25e98b7aaa3 /src/client/app/dev
parentMerge pull request #1469 from tamaina/snake_case (diff)
downloadsharkey-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.vue2
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;