Skip to content

Commit

Permalink
style(resource): display class label of incoming link (DEV-568) (#702)
Browse files Browse the repository at this point in the history
  • Loading branch information
kilchenmann committed Apr 6, 2022
1 parent f90aedc commit aad1c5a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -152,7 +152,7 @@ <h3 class="label mat-title">
<div *ngIf="!loading">
<!-- the value(s) of the incoming links -->
<a class="link link-value" *ngFor="let inRes of incomingLinkResources"
(click)="openResource(inRes.id)">{{inRes.label}}</a>
(click)="openResource(inRes.id)">{{inRes.resourceClassLabel}}: <strong>{{inRes.label}}</strong></a>
<mat-paginator *ngIf="numberOffAllIncomingLinkRes > 25" [length]=numberOffAllIncomingLinkRes
[pageSize]="25" [hidePageSize]="true" [pageIndex]="pageEvent.pageIndex"
(page)="goToPage($event)">
Expand Down

0 comments on commit aad1c5a

Please sign in to comment.