Skip to content

Commit 8cd97e2

Browse files
authored
Merge pull request #79 from Srujithchaithanya1/feature/contributorsFirstName
feature: added firstName Add first names to contributors page
2 parents eb520d1 + 33e6557 commit 8cd97e2

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

projects/website-angular/src/app/content/contributors/contributors.component.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ <h1>Contributors</h1>
8282
Name
8383
<span class="material-symbols-rounded sort-icon">{{ sortIcon('displayName') }}</span>
8484
</th>
85+
<th class="col-name">First Name</th>
8586
<th class="col-orcid">ORCID</th>
8687
<th class="col-num sortable" (click)="toggleSort('authoredPathways')">
8788
Authored Pathways
@@ -107,6 +108,7 @@ <h1>Contributors</h1>
107108
<td class="col-name">
108109
<a [href]="personUrl(c.person.dbId)" class="person-link">{{ c.person.displayName }}</a>
109110
</td>
111+
<td class="col-name">{{ c.person.firstname }}</td>
110112
<td class="col-orcid">
111113
@if (c.person.orcidId) {
112114
<a class="orcid-link" [href]="orcidUrl(c.person.orcidId)" target="_blank" rel="noopener">

0 commit comments

Comments
 (0)