summaryrefslogtreecommitdiffstats
path: root/public/src/app/error-dialog/error-dialog.component.html
blob: 7b72d0629e32074e27fccf41e201898312c53386 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<p-dialog [(visible)]="store.displayErrorDialog" modal="modal" width="500" [responsive]="true" data-tests-id="error-dialog">
  <p-header>
    <span style="font-size: 1.3em;">
      Error
    </span>
  </p-header>

  <div *ngFor="let error of store.ErrorContent">
    {{ error.formattedErrorMessage }}
  </div>

  <p-footer>
    <button mat-raised-button color="primary" (click)="closeDialog()" data-tests-id="error-cancel">
      Cancel
    </button>
  </p-footer>
</p-dialog>