From 43e7b85f726cde3570e8f49faa8e1881b8d55f3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=A2=E1=84=91=E1=85=B3=E1=86=AF=20=E1=84=82?= =?UTF-8?q?=E1=85=A9=E1=84=90=E1=85=B3=E1=84=87=E1=85=AE=E1=86=A8?= Date: Mon, 3 Jun 2019 11:37:28 +0900 Subject: [PATCH] Fix: maestro id min length --- src/web/js/lib/account_validator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/js/lib/account_validator.js b/src/web/js/lib/account_validator.js index 60f6960..88b456e 100644 --- a/src/web/js/lib/account_validator.js +++ b/src/web/js/lib/account_validator.js @@ -1,5 +1,5 @@ function AccountValidator() { - this.patternMaestroID = /^[A-Za-z가-힣]{1}[A-Za-z0-9가-힣]{2,19}$/; + this.patternMaestroID = /^[A-Za-z가-힣]{1}[A-Za-z0-9가-힣]{3,19}$/; this.patternMaestroPW = /^[A-Za-z0-9]{4,16}$/; this.patternPlayerID = /^[A-Za-z0-9가-힣-_]{1,8}$/;