X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=ceph%2Fsrc%2Fpybind%2Fmgr%2Fdashboard%2Ffrontend%2Fsrc%2Fapp%2Fceph%2Fshared%2Ffeedback%2Ffeedback.component.ts;h=ac53edef28b8f6a865ef5dbda0d1e1d1ae5070a6;hb=aee94f6923ba628a85d855d0c5316d0da78bfa2a;hp=91a49a1bd45b7000bf8f2c3c273128366caa96f3;hpb=27f45121cc74e31203777ad565f78d8aad9b92a2;p=ceph.git diff --git a/ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/shared/feedback/feedback.component.ts b/ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/shared/feedback/feedback.component.ts index 91a49a1bd..ac53edef2 100644 --- a/ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/shared/feedback/feedback.component.ts +++ b/ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/shared/feedback/feedback.component.ts @@ -1,5 +1,5 @@ import { Component, OnDestroy, OnInit } from '@angular/core'; -import { FormControl, Validators } from '@angular/forms'; +import { UntypedFormControl, Validators } from '@angular/forms'; import { Router } from '@angular/router'; import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap'; @@ -63,11 +63,11 @@ export class FeedbackComponent implements OnInit, OnDestroy { private createForm() { this.feedbackForm = new CdFormGroup({ - project: new FormControl('', Validators.required), - tracker: new FormControl('', Validators.required), - subject: new FormControl('', Validators.required), - description: new FormControl('', Validators.required), - api_key: new FormControl('', Validators.required) + project: new UntypedFormControl('', Validators.required), + tracker: new UntypedFormControl('', Validators.required), + subject: new UntypedFormControl('', Validators.required), + description: new UntypedFormControl('', Validators.required), + api_key: new UntypedFormControl('', Validators.required) }); }