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 0f0546a commit bade90eCopy full SHA for bade90e
1 file changed
src/app/record/components/affiliation/affiliation.component.html
@@ -44,6 +44,21 @@
44
({{ affiliation.departmentName.value }})
45
</ng-container>
46
</div>
47
+ <div class="general-data" *ngIf="affiliation?.url?.value">
48
+ <span class="orc-font-body-small" i18n="@@shared.url">URL:</span>
49
+ <a
50
+ class="underline"
51
+ *ngIf="affiliation.url?.value | isUrl"
52
+ rel="noopener noreferrer"
53
+ target="_blank"
54
+ [href]="affiliation.url.value"
55
+ >
56
+ {{ affiliation.url.value }}
57
+ </a>
58
+ <ng-container *ngIf="!(affiliation.url?.value | isUrl)">
59
60
+ </ng-container>
61
+ </div>
62
<div class="type">
63
{{ affiliation?.affiliationType?.value | affiliationTypeLabel }}
64
0 commit comments