We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22f687d commit 46b137dCopy full SHA for 46b137d
src/app/shared/components/contributors-list/contributors-list.component.html
@@ -12,7 +12,11 @@
12
@if (readonly() || contributor.isUnregisteredContributor || !contributor.id || contributor.deactivated) {
13
<span data-test-contributor-name>{{ contributor.fullName }}{{ $last ? '' : ',' }}</span>
14
} @else {
15
- <a class="font-bold" [routerLink]="['/user', contributor.userId]" data-test-contributor-name>
+ <a
16
+ class="font-bold block line-height-3"
17
+ [routerLink]="['/user', contributor.userId]"
18
+ data-test-contributor-name
19
+ >
20
{{ contributor.fullName }}{{ $last ? '' : ',' }}
21
</a>
22
}
0 commit comments