Skip to content

Commit

Permalink
Merge branch 'main' into fix/batch-fixes-dec-5
Browse files Browse the repository at this point in the history
  • Loading branch information
leomendoza123 authored Dec 6, 2023
2 parents a4c7c76 + d2711e2 commit 9163d50
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## v2.51.4 - 2023-12-05

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.51.3...v2.51.4)

### Fix

- Update additional email message error (#2101)

## v2.51.3 - 2023-12-05

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.51.2...v2.51.3)

## v2.51.2 - 2023-12-05

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.51.1...v2.51.2)

- [#2104](https://github.com/ORCID/orcid-angular/pull/2104): batch-fixes-4-dec
- [#2103](https://github.com/ORCID/orcid-angular/pull/2103): fix: Adding missing i18 property and translation
- [#2102](https://github.com/ORCID/orcid-angular/pull/2102): style: Add missing class to radio buttons

### Fix

- Adding missing i18 property and translation

## v2.51.1 - 2023-11-30

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.51.0...v2.51.1)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
</mat-form-field>
<mat-error
*ngIf="
(additionalEmailsTouched &&
additionalEmails.hasError('email', additionalEmailControl.key)) ||
additionalEmails.hasError('pattern', additionalEmailControl.key)
additionalEmailsTouched &&
(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="
Expand Down

0 comments on commit 9163d50

Please sign in to comment.