All files / src/app/ceph/performance-counter/table-performance-counter table-performance-counter.component.html

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 149x                          
<cd-table *ngIf="counters; else warning"
          [data]="counters"
          [columns]="columns"
          columnMode="flex"
          [autoSave]="false"
          (fetchData)="getCounters($event)">
  <ng-template #valueTpl let-row="row">
    {{ row.value | dimless }} {{ row.unit }}
  </ng-template>
</cd-table>
<ng-template #warning>
  <cd-warning-panel i18n>Performance counters not available</cd-warning-panel>
</ng-template>