Skip to content

Commit

Permalink
fix: Title field is not mentioned as an optional (CXSPA-5943) (#18543)
Browse files Browse the repository at this point in the history
Co-authored-by: Hakwoo Kim <[email protected]>
  • Loading branch information
kimhw0630 and hakwookim authored Feb 23, 2024
1 parent b84c645 commit 564c6ed
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"addressForm": {
"title": "Title",
"titleOptional": "Title (optional)",
"defaultTitle": "Title",
"firstName": {
"label": "First name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"resetPassword": "Reset Password",
"createAccount": "Create an account",
"title": "Title",
"titleOptional": "Title (optional)",
"firstName": {
"label": "First name",
"placeholder": "First name"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<div *ngIf="titles.length !== 0">
<label>
<span class="label-content required">{{
'addressForm.title' | cxTranslate
'addressForm.titleOptional' | cxTranslate
}}</span>
<ng-select
id="title-select"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="form-group">
<label>
<span class="label-content">{{
'register.title' | cxTranslate
'register.titleOptional' | cxTranslate
}}</span>
<ng-select
[clearable]="false"
Expand Down

0 comments on commit 564c6ed

Please sign in to comment.