소스 검색

:pencil2: Fixed password validator char amount

tags/0.0.3^2
tomit4 3 년 전
부모
커밋
c556714ec6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      frontend/src/entities/survey/survey.answer.validator.js

+ 1
- 1
frontend/src/entities/survey/survey.answer.validator.js 파일 보기

@@ -14,7 +14,7 @@ const answerValidator = {
14 14
         .max(30)
15 15
         .pattern(
16 16
             new RegExp(
17
-                '^(?=.*[!@#$%^&*()_+\\-=[\\]{};\':"\\\\|,.<>\\/?])(?=.*[!@#$%^&*()_+\\-=[\\]{};\':"\\\\|,.<>\\/?])[a-zA-Z0-9!@#$%^&*()_+\\-=[\\]{};\':"\\\\|,.<>\\/?]{10,}$',
17
+                '^(?=.*[!@#$%^&*()_+\\-=[\\]{};\':"\\\\|,.<>\\/?])(?=.*[!@#$%^&*()_+\\-=[\\]{};\':"\\\\|,.<>\\/?])[a-zA-Z0-9!@#$%^&*()_+\\-=[\\]{};\':"\\\\|,.<>\\/?]{14,}$',
18 18
             ),
19 19
         ),
20 20
     // TODO: Change if going international (only works in usa)

Loading…
취소
저장