]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.ts
bump version to 18.2.2-pve1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / prometheus / prometheus-tabs / prometheus-tabs.component.ts
1 import { Component } from '@angular/core';
2
3 import { PrometheusAlertService } from '~/app/shared/services/prometheus-alert.service';
4
5 @Component({
6 selector: 'cd-prometheus-tabs',
7 templateUrl: './prometheus-tabs.component.html',
8 styleUrls: ['./prometheus-tabs.component.scss']
9 })
10 export class PrometheusTabsComponent {
11 constructor(public prometheusAlertService: PrometheusAlertService) {}
12 }