Skip to content

Commit

Permalink
🤖 GITHUB ACTIONS format_prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
amontenegro committed Feb 12, 2024
1 parent 9715d8b commit c818f2d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
5 changes: 4 additions & 1 deletion src/app/cdk/side-bar/side-bar/side-bar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
>
<h2
class="orc-font-body-large"
[ngClass]="{ 'sr-only': !loadingUserRecord && isPublicRecord ? !newRecordHeaderTogglz : true }"
[ngClass]="{
'sr-only':
!loadingUserRecord && isPublicRecord ? !newRecordHeaderTogglz : true
}"
i18n="@@shared.personalInformation"
>
Personal information
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
</ng-container>
</h1>
</div>
<div class="row other-names" [ngClass]="{ mobile: !platform.columns12 }">
<div
class="row other-names"
[ngClass]="{ mobile: !platform.columns12 }"
>
<p class="orc-font-body" *ngIf="otherNames">{{ otherNames }}</p>
</div>
</div>
Expand All @@ -38,7 +41,9 @@
}"
>
<ng-container
*ngIf="userInfo.IS_DEACTIVATED === 'true' && !userInfo.PRIMARY_RECORD"
*ngIf="
userInfo.IS_DEACTIVATED === 'true' && !userInfo.PRIMARY_RECORD
"
i18n="@@summary.recordIsDeactivated"
>This record has been deactivated
</ng-container>
Expand Down
6 changes: 4 additions & 2 deletions src/app/record/pages/my-orcid/my-orcid.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
></app-record-header>
<app-record-info
*ngIf="
publicOrcid && newRecordHeaderTogglz
publicOrcid && newRecordHeaderTogglz
? recordWithIssues || (!loadingUserRecord && affiliations === 0)
: false
"
Expand All @@ -22,7 +22,9 @@
class="container no-padding"
*ngIf="
!loadingUserRecord && newRecordHeaderTogglz
? publicOrcid ? !recordWithIssues && affiliations > 0 : true
? publicOrcid
? !recordWithIssues && affiliations > 0
: true
: true
"
>
Expand Down

0 comments on commit c818f2d

Please sign in to comment.