Skip to content

Commit

Permalink
Merge branch 'main' into fix/batch-fixes-jan-18-2024
Browse files Browse the repository at this point in the history
  • Loading branch information
leomendoza123 authored Jan 18, 2024
2 parents 93105a7 + bb4681c commit 2e1b006
Show file tree
Hide file tree
Showing 7 changed files with 84 additions and 21 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## v2.53.7 - 2024-01-17

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

- [#2138](https://github.com/ORCID/orcid-angular/pull/2138): fix: Remove unnecessary href attributes

### Fix

- Remove unnecessary href attributes

## v2.53.6 - 2024-01-17

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

- [#2137](https://github.com/ORCID/orcid-angular/pull/2137): Lmendoza/batch fixes 17 jan 2024

## v2.53.5 - 2024-01-15

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

- [#2135](https://github.com/ORCID/orcid-angular/pull/2135): 8934 registration add an affiliation with typeahead

## v2.53.4 - 2024-01-12

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.53.3...v2.53.4)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ import { ErrorHandlerService } from '../../../core/error-handler/error-handler.s
import { ReactivationService } from '../../../core/reactivation/reactivation.service'
import { Register2Service } from '../../../core/register2/register2.service'
import { FormCurrentEmploymentComponent } from './form-current-employment.component'
import { MatLegacyAutocomplete, MatLegacyAutocompleteModule } from '@angular/material/legacy-autocomplete'
import {
MatLegacyAutocomplete,
MatLegacyAutocompleteModule,
} from '@angular/material/legacy-autocomplete'
import { SharedModule } from 'src/app/shared/shared.module'

describe('FormPersonalComponent', () => {
Expand All @@ -22,7 +25,13 @@ describe('FormPersonalComponent', () => {

beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule, MdePopoverModule, RouterTestingModule, MatLegacyAutocompleteModule, SharedModule],
imports: [
HttpClientTestingModule,
MdePopoverModule,
RouterTestingModule,
MatLegacyAutocompleteModule,
SharedModule,
],
declarations: [FormCurrentEmploymentComponent],
providers: [
WINDOW_PROVIDERS,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,7 @@
*ngIf="activity.organizationName && activity.url"
class="orc-font-body-small"
>
<a
class="underline"
target="_blank"
rel="noopener noreferrer"
href="{{ activity.url }}"
>{{ activity.organizationName }}
</a>
<a class="underline">{{ activity.organizationName }} </a>
</h3>
<h3
*ngIf="activity.organizationName && !activity.url"
Expand All @@ -48,12 +42,7 @@
</h3>
</div>

<a
*ngIf="activity.url"
target="_blank"
rel="noopener noreferrer"
href="{{ activity.url }}"
>
<a *ngIf="activity.url">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
Expand Down
7 changes: 1 addition & 6 deletions src/locale/properties/register/register.en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -157,17 +157,12 @@ register.onlyPeopleAndOrganization=Only people and organizations you’ve given
register.itemsArePrivateAndOnly=Items are private and only visible to you
register.step1.2=Step 1 of 4 - Names and emails
register.step2.2=Step 2 of 4 - Password
register.step2.3=Step 3 of 4 - Visibility
register.step2.3=Step 2 of 5 - Password
register.step2.4=Step 4 of 4 - Terms and conditions
register.step1.3=Step 1 of 5 - Names and emails
register.step2.3=Step 2 of 5 - Password
register.step3.3=Step 3 of 5 - Current employment
register.step4.3=Step 4 of 5 - Visibility
register.step5.3=Step 5 of 5 - Terms and conditions
register.nextStep=Next Step
register.cancelRegistration=Cancel registration
register.previousStep=Previous Step
Expand Down
16 changes: 16 additions & 0 deletions src/locale/properties/register/register.lr.properties
Original file line number Diff line number Diff line change
Expand Up @@ -195,3 +195,19 @@ register.confirmYourPassword=LR
register.VisibilityParties=LR
register.emailPlaceholder=LR
register.emailIsAlreadyAssociated=LR
register.step1.3=LR
register.step3.3=LR
register.step4.3=LR
register.step5.3=LR
register.roleJobTitle=LR
register.department=LR
register.weCantIdentifyThisOrganization=LR
register.currentEmployment=LR
register.pleaseEnterAnOrganizationName=LR
register.organizationPlaceholder=LR
register.departmentPlaceholder=LR
register.rolePlaceholder=LR
register.yearPlaceholder=LR
register.monthPlaceholder=LR
register.clearOrganization=LR
shared.skipThisStepWithoutAddingAnAffiliation=LR
16 changes: 16 additions & 0 deletions src/locale/properties/register/register.rl.properties
Original file line number Diff line number Diff line change
Expand Up @@ -195,3 +195,19 @@ register.confirmYourPassword=RL
register.VisibilityParties=RL
register.emailPlaceholder=RL
register.emailIsAlreadyAssociated=RL
register.step1.3=RL
register.step3.3=RL
register.step4.3=RL
register.step5.3=RL
register.roleJobTitle=RL
register.department=RL
register.weCantIdentifyThisOrganization=RL
register.currentEmployment=RL
register.pleaseEnterAnOrganizationName=RL
register.organizationPlaceholder=RL
register.departmentPlaceholder=RL
register.rolePlaceholder=RL
register.yearPlaceholder=RL
register.monthPlaceholder=RL
register.clearOrganization=RL
shared.skipThisStepWithoutAddingAnAffiliation=RL
16 changes: 16 additions & 0 deletions src/locale/properties/register/register.xx.properties
Original file line number Diff line number Diff line change
Expand Up @@ -195,3 +195,19 @@ register.confirmYourPassword=X
register.VisibilityParties=X
register.emailPlaceholder=X
register.emailIsAlreadyAssociated=X
register.step1.3=X
register.step3.3=X
register.step4.3=X
register.step5.3=X
register.roleJobTitle=X
register.department=X
register.weCantIdentifyThisOrganization=X
register.currentEmployment=X
register.pleaseEnterAnOrganizationName=X
register.organizationPlaceholder=X
register.departmentPlaceholder=X
register.rolePlaceholder=X
register.yearPlaceholder=X
register.monthPlaceholder=X
register.clearOrganization=X
shared.skipThisStepWithoutAddingAnAffiliation=X

0 comments on commit 2e1b006

Please sign in to comment.