Skip to content

Commit

Permalink
fix(auth): two minor typos in auth components (#1682)
Browse files Browse the repository at this point in the history
  • Loading branch information
MiWeiss authored and nnixaa committed Jul 8, 2019
1 parent 7c8e3a3 commit 44225d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/framework/auth/components/login/login.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ <h1 id="title" class="title">Login</h1>
Password is required!
</p>
<p class="caption status-danger" *ngIf="password.errors?.minlength || password.errors?.maxlength">
Password should contains
Password should contain
from {{ getConfigValue('forms.validation.password.minLength') }}
to {{ getConfigValue('forms.validation.password.maxLength') }}
characters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ <h1 id="title" class="title">Register</h1>
Password is required!
</p>
<p class="caption status-danger" *ngIf="password.errors?.minlength || password.errors?.maxlength">
Password should contains
Password should contain
from {{ getConfigValue('forms.validation.password.minLength') }}
to {{ getConfigValue('forms.validation.password.maxLength') }}
characters
Expand Down

0 comments on commit 44225d4

Please sign in to comment.