cambio de texto en validacion 3.0

This commit is contained in:
Paola 2021-07-11 22:37:44 -06:00
parent dddb15f125
commit 0235a95716
1 changed files with 4 additions and 4 deletions

View File

@ -105,7 +105,7 @@
*ngIf="loginForm.get('username')?.errors?.required"
jhiTranslate="global.messages.validate.email.required"
>
Your email is required.
Your email is required
</small>
<small
@ -113,7 +113,7 @@
*ngIf="loginForm.get('username')?.errors?.invalid"
jhiTranslate="global.messages.validate.email.invalid"
>
Your email is invalid.
Your email is invalid
</small>
<small
@ -121,7 +121,7 @@
*ngIf="loginForm.get('username')?.errors?.minlength"
jhiTranslate="global.messages.validate.email.minlength"
>
Your email is required to be at least 5 characters.
Your email is required to be at least 5 characters
</small>
<small
@ -129,7 +129,7 @@
*ngIf="loginForm.get('username')?.errors?.maxlength"
jhiTranslate="global.messages.validate.email.maxlength"
>
Your email cannot be longer than 100 characters.
Your email cannot be longer than 100 characters
</small>
</div>
</div>