Skip to content

Commit

Permalink
🤖 GITHUB ACTIONS format_prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
orcid-releaser committed May 23, 2023
1 parent 4c6201c commit f552641
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,10 @@ <h2 class="col no-gutters orc-font-body" i18n="@@topBar.myKeywords">
<app-visibility-selector
[ngClass]="{ selector: !platform.columns12 }"
formControlName="visibility"
[itemTitle]="keywordsForm.get(keyword.putCode)?.get('content').value || ''"
[itemTitle]="
keywordsForm.get(keyword.putCode)?.get('content').value ||
''
"
></app-visibility-selector>
<button
(click)="deleteKeyword(keyword.putCode)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@
>
<app-visibility-selector
formControlName="visibility"
[itemTitle]="personIdentifier.commonName +
':' +
personIdentifier.reference"
[itemTitle]="
personIdentifier.commonName + ':' + personIdentifier.reference
"
>
</app-visibility-selector>
<button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,8 @@ <h2 class="col no-gutters orc-font-body" i18n="@@topBar.myLinks">
[attr.aria-label]="
ariaLabelDelete +
' ' +
(websitesForm.get(website.putCode)?.get('description').value ||
'')
(websitesForm.get(website.putCode)?.get('description')
.value || '')
"
>
<mat-icon
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ export class WorkFormComponent implements OnInit {
ngOrcidDay = $localize`:@@shared.day:Day`
languageLabelAriaLabel = $localize`:@@shared.languageLabelAriaLabel:Select the language used in this form`
selectCountryLocationLabel = $localize`:@@shared.selectCountryLocationLabel:Select a country or location of publication`
ariaLabelWork= $localize`:@@shared.ariaLabelWork:Work`

ariaLabelWork = $localize`:@@shared.ariaLabelWork:Work`

@Input() work: Work
@Input() userRecord: UserRecord
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class WorksVisibilityModalComponent implements OnInit, OnDestroy {
putCodes: string[] = []
works: Work[] = []
ngOrcidDefaultVisibilityLabel = $localize`:@@shared.visibilityDescription:Control who can see this information by setting the visibility. Your default visibility is`
ariaLabelWork= $localize`:@@shared.works:Works`
ariaLabelWork = $localize`:@@shared.works:Works`

constructor(
public dialogRef: MatDialogRef<ModalComponent>,
Expand Down

0 comments on commit f552641

Please sign in to comment.