Skip to content

Commit 33e6557

Browse files
feature: added firstName Add first names to contributors page
Fixes #78
1 parent b76997c commit 33e6557

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
@@ -83,6 +83,7 @@ <h1>Contributors</h1>
8383
Name
8484
<span class="material-symbols-rounded sort-icon">{{ sortIcon('displayName') }}</span>
8585
</th>
86+
<th class="col-name">First Name</th>
8687
<th class="col-orcid">ORCID</th>
8788
<th class="col-num sortable" (click)="toggleSort('authoredPathways')">
8889
Authored Pathways
@@ -108,6 +109,7 @@ <h1>Contributors</h1>
108109
<td class="col-name">
109110
<a [href]="personUrl(c.person.dbId)" class="person-link">{{ c.person.displayName }}</a>
110111
</td>
112+
<td class="col-name">{{ c.person.firstname }}</td>
111113
<td class="col-orcid">
112114
@if (c.person.orcidId) {
113115
<a class="orcid-link" [href]="orcidUrl(c.person.orcidId)" target="_blank" rel="noopener">

0 commit comments

Comments
 (0)