summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.ts
blob: d5bc36ad67eb752a59b57fa0531b65c564e351e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Component, Input } from '@angular/core';

import { OrchestratorFeature } from '~/app/shared/models/orchestrator.enum';

@Component({
  selector: 'cd-orchestrator-doc-panel',
  templateUrl: './orchestrator-doc-panel.component.html',
  styleUrls: ['./orchestrator-doc-panel.component.scss']
})
export class OrchestratorDocPanelComponent {
  @Input()
  missingFeatures: OrchestratorFeature[];
}