-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Update additional email message error
- Loading branch information
1 parent
17b13cc
commit af0eb6b
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,12 +29,12 @@ | |
<mat-error | ||
*ngIf=" | ||
(additionalEmailsTouched && | ||
additionalEmails.hasError('email', additionalEmailControl.key)) || | ||
additionalEmails.hasError('pattern', additionalEmailControl.key) | ||
additionalEmails.hasError('email', additionalEmailControl.key) || | ||
additionalEmails.hasError('pattern', additionalEmailControl.key)) | ||
" | ||
i18n="@@register.invalidEmail" | ||
i18n="@@register.invalidEmail2" | ||
> | ||
Invalid email format | ||
Please enter a valid email address, for example [email protected] | ||
</mat-error> | ||
<mat-error | ||
*ngFor=" | ||
|