1 <cd-modal [modalRef]="activeModal">
3 class="modal-title">Restore Image</ng-container>
5 <ng-container class="modal-content">
6 <form name="restoreForm"
9 [formGroup]="restoreForm"
11 <div class="modal-body">
12 <p i18n>To restore
13 <kbd>{{ imageSpec }}@{{ imageId }}</kbd>,
14 type the image's new name and click
15 <kbd>Restore</kbd>.</p>
17 <div class="form-group">
18 <label class="col-form-label"
26 formControlName="name"
28 <span class="invalid-feedback"
29 *ngIf="restoreForm.showError('name', formDir, 'required')"
30 i18n>This field is required.</span>
34 <div class="modal-footer">
35 <cd-form-button-panel (submitActionEvent)="restore()"
37 [submitText]="actionLabels.RESTORE"></cd-form-button-panel>