]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.ts
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / rbd-namespace-form / rbd-namespace-form-modal.component.ts
index bad32c3c554cacb949240db26b01716e285c6f81..584caa88442f4f3bfc69960982ad124c1fd0d0e2 100644 (file)
@@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core';
 import {
   AbstractControl,
   AsyncValidatorFn,
-  FormControl,
+  UntypedFormControl,
   ValidationErrors,
   ValidatorFn
 } from '@angular/forms';
@@ -53,8 +53,8 @@ export class RbdNamespaceFormModalComponent implements OnInit {
   createForm() {
     this.namespaceForm = new CdFormGroup(
       {
-        pool: new FormControl(''),
-        namespace: new FormControl('')
+        pool: new UntypedFormControl(''),
+        namespace: new UntypedFormControl('')
       },
       this.validator(),
       this.asyncValidator()