File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
projects/observability/src/shared/components/bar-gauge Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,9 @@ import {
27
27
<div class="header-data" [ngClass]="this.display">
28
28
<div *ngIf="this.title" class="title">{{ this.title | htDisplayTitle }}</div>
29
29
<div class="count">
30
- <span>{{ this.totalValue | number }}</span>
31
- <span class="units" *ngIf="this.units && this.isUnlimited"> {{ this.units }}</span>
30
+ <span>{{ this.totalValue | htDisplayNumber }}</span>
32
31
<span> / </span>
33
- <span *ngIf="!this.isUnlimited">{{ this.maxValue | number }}</span>
32
+ <span *ngIf="!this.isUnlimited">{{ this.maxValue | htDisplayNumber }}</span>
34
33
<span class="unlimited-symbol" *ngIf="this.isUnlimited">∞</span>
35
34
<span class="units" *ngIf="this.units && !this.isUnlimited"> {{ this.units }}</span>
36
35
</div>
You can’t perform that action at this time.
0 commit comments