Explorar el Código

:pencil2: Fixed password validator char amount

tabs-content
tomit4 hace 3 años
padre
commit
b35285e64a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      frontend/src/entities/survey/survey.answer.validator.js

+ 1
- 1
frontend/src/entities/survey/survey.answer.validator.js Ver fichero

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

Loading…
Cancelar
Guardar