Skip to content

Commit

Permalink
fix(auth): fix full-name validation error showing password validation…
Browse files Browse the repository at this point in the history
… text
  • Loading branch information
GianlucaRi authored and nnixaa committed Apr 6, 2018
1 parent 8c10372 commit d12397b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/framework/auth/components/register/register.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ import { NbAuthResult } from '../../services/auth-result';
class="form-text error"
*ngIf="fullName.invalid && fullName.touched && (fullName.errors?.minlength || fullName.errors?.maxlength)">
Full name should contains
from {{getConfigValue('forms.validation.password.minLength')}}
to {{getConfigValue('forms.validation.password.maxLength')}}
from {{getConfigValue('forms.validation.fullName.minLength')}}
to {{getConfigValue('forms.validation.fullName.maxLength')}}
characters
</small>
</div>
Expand Down

0 comments on commit d12397b

Please sign in to comment.