]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/confirmation-modal/confirmation-modal.component.html
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / confirmation-modal / confirmation-modal.component.html
index bea4eb533b233b982d53c9a87a4e2b87af223e51..294d43f775b21c1b184294323901bf0e309b13ea 100644 (file)
@@ -1,5 +1,9 @@
 <cd-modal (hide)="cancel()">
-  <ng-container class="modal-title">{{ titleText }}</ng-container>
+  <ng-container class="modal-title">
+    <span class="text-warning"
+          *ngIf="warning">
+      <i class="fa fa-exclamation-triangle fa-1x"></i>
+    </span>{{ titleText }}</ng-container>
   <ng-container class="modal-content">
     <form name="confirmationForm"
           #formDir="ngForm"
         </p>
       </div>
       <div class="modal-footer">
-        <div class="button-group text-right">
-          <cd-submit-button [form]="confirmationForm"
-                            (submitAction)="onSubmit(confirmationForm.value)">
-            {{ buttonText }}
-          </cd-submit-button>
-          <cd-back-button [back]="boundCancel"
-                          name="Cancel"
-                          i18n-name>
-          </cd-back-button>
-        </div>
+        <cd-form-button-panel (submitActionEvent)="onSubmit(confirmationForm.value)"
+                              (backActionEvent)="boundCancel()"
+                              [form]="confirmationForm"
+                              [submitText]="buttonText"
+                              [showSubmit]="showSubmit"></cd-form-button-panel>
       </div>
     </form>
   </ng-container>