diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f1080125c..c8c1914345 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## v2.43.0 - 2023-10-11 + +[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.42.5...v2.43.0) + +## v2.42.5 - 2023-10-11 + +[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.42.4...v2.42.5) + +### Fix + +- Sort by source is inverse (#2076) + ## v2.42.4 - 2023-10-09 [Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.42.3...v2.42.4) diff --git a/src/app/core/record-affiliations-sort/record-affiliations-sort.service.ts b/src/app/core/record-affiliations-sort/record-affiliations-sort.service.ts index a9fdf69453..d0efe278ed 100644 --- a/src/app/core/record-affiliations-sort/record-affiliations-sort.service.ts +++ b/src/app/core/record-affiliations-sort/record-affiliations-sort.service.ts @@ -94,7 +94,7 @@ export class AffiliationsSortService { Number(AffiliationsSortService.isSelfAsserted(b, orcid)) ) }) - if (!ascending) { + if (ascending) { affiliationGroup.reverse() } }