]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/confirmation-modal/confirmation-modal.component.ts
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / confirmation-modal / confirmation-modal.component.ts
index b98cea93846f6f01c65082448ee1c66bf13ec8a1..608f9b76245960521c2eb46ca3f43f905115290f 100644 (file)
@@ -1,5 +1,5 @@
 import { Component, OnDestroy, OnInit, TemplateRef } from '@angular/core';
-import { FormGroup } from '@angular/forms';
+import { UntypedFormGroup } from '@angular/forms';
 
 import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
 
@@ -28,11 +28,11 @@ export class ConfirmationModalComponent implements OnInit, OnDestroy {
 
   // Component only
   boundCancel = this.cancel.bind(this);
-  confirmationForm: FormGroup;
+  confirmationForm: UntypedFormGroup;
   private canceled = false;
 
   constructor(public activeModal: NgbActiveModal) {
-    this.confirmationForm = new FormGroup({});
+    this.confirmationForm = new UntypedFormGroup({});
   }
 
   ngOnInit() {