]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/prometheus/prometheus-list/prometheus-list.component.html
build: use dgit for download target
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / prometheus / prometheus-list / prometheus-list.component.html
CommitLineData
11fdf7f2
TL
1<cd-table [data]="prometheusAlertService.alerts"
2 [columns]="columns"
3 identifier="fingerprint"
4 [forceIdentifier]="true"
5 [customCss]="customCss"
6 selectionType="single"
7 (updateSelection)="updateSelection($event)">
8 <tabset cdTableDetail *ngIf="selection.hasSingleSelection">
9 <tab i18n-heading
10 heading="Details">
11 <cd-table-key-value [renderObjects]="true"
12 [hideEmpty]="true"
13 [appendParentKey]="false"
14 [data]="selection.first()"
15 [customCss]="customCss"
16 [autoReload]="false">
17 </cd-table-key-value>
18 </tab>
19 </tabset>
20</cd-table>
21
22<ng-template #externalLinkTpl
23 let-row="row"
24 let-value="value">
25 <a [href]="value" target="_blank"><i class="fa fa-line-chart"></i> Source</a>
26</ng-template>
27