]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/dashboard.module.ts
import quincy beta 17.1.0
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / dashboard / dashboard.module.ts
index 1205de94dd6e00a41df6e947e7c715a7ce0215ec..4bdfd50a51bfd25d5125c89acbae7811303e85d5 100644 (file)
@@ -1,5 +1,6 @@
 import { CommonModule } from '@angular/common';
 import { NgModule } from '@angular/core';
+import { FormsModule, ReactiveFormsModule } from '@angular/forms';
 import { RouterModule } from '@angular/router';
 
 import { NgbNavModule, NgbPopoverModule } from '@ng-bootstrap/ng-bootstrap';
@@ -7,6 +8,7 @@ import { ChartsModule } from 'ng2-charts';
 
 import { SharedModule } from '~/app/shared/shared.module';
 import { CephSharedModule } from '../shared/ceph-shared.module';
+import { FeedbackComponent } from '../shared/feedback/feedback.component';
 import { DashboardComponent } from './dashboard/dashboard.component';
 import { HealthPieComponent } from './health-pie/health-pie.component';
 import { HealthComponent } from './health/health.component';
@@ -25,7 +27,9 @@ import { OsdSummaryPipe } from './osd-summary.pipe';
     SharedModule,
     ChartsModule,
     RouterModule,
-    NgbPopoverModule
+    NgbPopoverModule,
+    FormsModule,
+    ReactiveFormsModule
   ],
 
   declarations: [
@@ -37,7 +41,8 @@ import { OsdSummaryPipe } from './osd-summary.pipe';
     MdsSummaryPipe,
     HealthPieComponent,
     InfoCardComponent,
-    InfoGroupComponent
+    InfoGroupComponent,
+    FeedbackComponent
   ]
 })
 export class DashboardModule {}