Skip to content

Commit 7bedf7f

Browse files
committed
src/app/community-list-page: remove newlines in links
The newlines cause whitespace to be enapsulated in the rendered link.
1 parent 92a10ce commit 7bedf7f

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

src/app/community-list-page/community-list/community-list.component.html

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@
3535
</button>
3636
<div class="d-flex flex-row">
3737
<span class="align-middle pt-2 lead">
38-
<a [routerLink]="node.route" class="lead">
39-
{{ dsoNameService.getName(node.payload) }}
40-
</a>
38+
<a [routerLink]="node.route" class="lead">{{ dsoNameService.getName(node.payload) }}</a>
4139
<span class="pr-2">&nbsp;</span>
4240
<span *ngIf="node.payload.archivedItemsCount >= 0" class="badge badge-pill badge-secondary align-top archived-items-lead">{{node.payload.archivedItemsCount}}</span>
4341
</span>
@@ -73,9 +71,7 @@
7371
<span class="fa fa-chevron-right invisible" aria-hidden="true"></span>
7472
</button>
7573
<h6 class="align-middle pt-2">
76-
<a [routerLink]="node.route" class="lead">
77-
{{ dsoNameService.getName(node.payload) }}
78-
</a>
74+
<a [routerLink]="node.route" class="lead">{{ dsoNameService.getName(node.payload) }}</a>
7975
</h6>
8076
</div>
8177
<ds-truncatable [id]="node.id">

0 commit comments

Comments
 (0)