20 lines
677 B
HTML
20 lines
677 B
HTML
<ng-container *ngIf="errorService.error$ | async as error">
|
|
<section class="full-page-section"></section>
|
|
|
|
<section class="full-page-content flex-align-items-center">
|
|
<mat-icon svgIcon="iqser:failure"></mat-icon>
|
|
|
|
<div [translate]="errorTitle(error)" class="heading-l mt-24"></div>
|
|
|
|
<div *ngIf="error.message" class="mt-16 error">{{ error.message }}</div>
|
|
|
|
<iqser-icon-button
|
|
(action)="action(error)"
|
|
[icon]="actionIcon(error)"
|
|
[label]="actionLabel(error) | translate"
|
|
[type]="iconButtonTypes.primary"
|
|
class="mt-20"
|
|
></iqser-icon-button>
|
|
</section>
|
|
</ng-container>
|