]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/view-cache/view-cache.component.ts
import 15.2.0 Octopus source
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / view-cache / view-cache.component.ts
1 import { Component, Input, OnInit } from '@angular/core';
2
3 import { ViewCacheStatus } from '../../enum/view-cache-status.enum';
4
5 @Component({
6 selector: 'cd-view-cache',
7 templateUrl: './view-cache.component.html',
8 styleUrls: ['./view-cache.component.scss']
9 })
10 export class ViewCacheComponent implements OnInit {
11 @Input()
12 status: ViewCacheStatus;
13 @Input()
14 statusFor: string;
15 vcs = ViewCacheStatus;
16
17 constructor() {}
18
19 ngOnInit() {}
20 }