mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 05:53:03 +00:00
10 lines
482 B
HTML
10 lines
482 B
HTML
<div *ngVar="(itemRD$ | async) as itemRD">
|
|
<div class="item-page" *ngIf="itemRD?.hasSucceeded" @fadeInOut>
|
|
<div *ngIf="itemRD?.payload as item">
|
|
<ds-listable-object-component-loader [object]="item" [viewMode]="viewMode"></ds-listable-object-component-loader>
|
|
</div>
|
|
</div>
|
|
<ds-error *ngIf="itemRD?.hasFailed" message="{{'error.item' | translate}}"></ds-error>
|
|
<ds-loading *ngIf="itemRD?.isLoading" message="{{'loading.item' | translate}}"></ds-loading>
|
|
</div>
|