Signed-off-by: Afreen Misbah <afreen@ibm.com>
</ng-template>
<!-- CAPACITY USAGE TEXT -->
<div class="overview-storage-card-usage-text">
- @if(displayUsedRaw && totalRaw && usedRawUnit && totalRawUnit) {
+ @if( totalRaw && usedRawUnit && totalRawUnit) {
<h5>
<span
class="cds--type-heading-05"
<span
class="cds--type-body-02"
i18n>{{usedRawUnit}} of {{totalRaw}} {{totalRawUnit}} used</span>
+ <cds-tooltip
+ class="cds-ml-3"
+ [caret]="true"
+ description="Shows raw used vs. total raw capacity. Raw capacity includes all physical storage before replication or overhead."
+ i8n-description
+ >
+ <cd-icon type="help"></cd-icon>
+ </cds-tooltip>
</h5>
}
@else {
import { RgwBucketService } from '~/app/shared/api/rgw-bucket.service';
import { AreaChartComponent } from '~/app/shared/components/area-chart/area-chart.component';
import { PieChartComponent } from '~/app/shared/components/pie-chart/pie-chart.component';
+import { ComponentsModule } from '~/app/shared/components/components.module';
const CHART_HEIGHT = '45px';
SkeletonModule,
LayoutModule,
AreaChartComponent,
- PieChartComponent
+ PieChartComponent,
+ ComponentsModule
],
standalone: true,
templateUrl: './overview-storage-card.component.html',