]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.ts
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / rgw / rgw-sync-metadata-info / rgw-sync-metadata-info.component.ts
1 import { Component, Input } from '@angular/core';
2 import { Icons } from '~/app/shared/enum/icons.enum';
3
4 @Component({
5 selector: 'cd-rgw-sync-metadata-info',
6 templateUrl: './rgw-sync-metadata-info.component.html',
7 styleUrls: ['./rgw-sync-metadata-info.component.scss']
8 })
9 export class RgwSyncMetadataInfoComponent {
10 icons = Icons;
11
12 @Input()
13 metadataSyncInfo: any = {};
14
15 constructor() {}
16 }