Skip to content

Commit

Permalink
Merge branch 'main' into 9562-implement-dynamic-environment-variable-…
Browse files Browse the repository at this point in the history
…loading-for-single-artifact-deployment
  • Loading branch information
leomendoza123 authored Jan 8, 2025
2 parents 794cc1e + 3e212e5 commit 2061f02
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v2.109.15 - 2025-01-06

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

## v2.109.14 - 2025-01-03

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.109.13...v2.109.14)
Expand Down
6 changes: 1 addition & 5 deletions src/app/cdk/panel/panel/panel.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,11 +291,7 @@ export class PanelComponent implements OnInit {
break
case 'peer-review':
this._peerReviewService
.updateVisibility(
this.elements.groupIdValue,
visibility,
this.elements?.groupId
)
.updateVisibility(this.elements.groupId, visibility)
.subscribe()
break
case 'top-bar':
Expand Down
7 changes: 3 additions & 4 deletions src/app/core/record-peer-review/record-peer-review.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,15 +123,14 @@ export class RecordPeerReviewService {
}

updateVisibility(
putCode: any,
visibility: VisibilityStrings,
groupId?: any
groupId: any,
visibility: VisibilityStrings
): Observable<any> {
return this._http
.post(
runtimeEnvironment.API_WEB +
'peer-reviews/' +
putCode +
groupId +
'/visibility/' +
visibility,
null
Expand Down

0 comments on commit 2061f02

Please sign in to comment.