mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 18:44:14 +00:00
[DURACOM-307] apply migration script to conflicted files resolved in favor of Angular 18 update
This commit is contained in:
@@ -1,13 +1,21 @@
|
||||
<div class="d-flex flex-row">
|
||||
<a *ngIf="linkType !== linkTypes.None" [target]="(linkType === linkTypes.ExternalLink) ? '_blank' : '_self'" [attr.rel]="(linkType === linkTypes.ExternalLink) ? 'noopener noreferrer' : null" [routerLink]="['/collections/' + object.id]" class="lead">
|
||||
{{ dsoNameService.getName(object) }}
|
||||
</a>
|
||||
<span *ngIf="linkType === linkTypes.None" class="lead">
|
||||
{{ dsoNameService.getName(object) }}
|
||||
</span>
|
||||
@if (linkType !== linkTypes.None) {
|
||||
<a [target]="(linkType === linkTypes.ExternalLink) ? '_blank' : '_self'" [attr.rel]="(linkType === linkTypes.ExternalLink) ? 'noopener noreferrer' : null" [routerLink]="['/collections/' + object.id]" class="lead">
|
||||
{{ dsoNameService.getName(object) }}
|
||||
</a>
|
||||
}
|
||||
@if (linkType === linkTypes.None) {
|
||||
<span class="lead">
|
||||
{{ dsoNameService.getName(object) }}
|
||||
</span>
|
||||
}
|
||||
<span class="pe-2"> </span>
|
||||
<span *ngIf="object.archivedItemsCount >= 0" class="badge rounded-pill bg-secondary align-self-center archived-items-lead ps-2 pe-2">{{object.archivedItemsCount}}</span>
|
||||
@if (object.archivedItemsCount >= 0) {
|
||||
<span class="badge rounded-pill bg-secondary align-self-center archived-items-lead ps-2 pe-2">{{object.archivedItemsCount}}</span>
|
||||
}
|
||||
</div>
|
||||
<div *ngIf="object.shortDescription" class="text-muted abstract-text">
|
||||
@if (object.shortDescription) {
|
||||
<div class="text-muted abstract-text">
|
||||
{{object.shortDescription}}
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
|
Reference in New Issue
Block a user