argos/dmp-frontend/src/common/forms/form-validation-errors-dialog/form-validation-errors-dial...

12 lines
458 B
HTML
Raw Normal View History

<div class="form-content-editor-content">
<h1 id="warningText" mat-dialog-title>{{'GENERAL.FORM-VALIDATION-DISPLAY-DIALOG.WARNING' | translate}}</h1>
<div mat-dialog-content>
<ul>
<li *ngFor="let error of errorMessages">{{error}}</li>
</ul>
</div>
<div mat-dialog-actions>
<button mat-raised-button color="primary" type="button" (click)="onClose()">{{'GENERAL.FORM-VALIDATION-DISPLAY-DIALOG.ACTIONS.CANCEL' | translate}}</button>
</div>
</div>