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 {
2727 <div class="header-data" [ngClass]="this.display">
2828 <div *ngIf="this.title" class="title">{{ this.title | htDisplayTitle }}</div>
2929 <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>
3231 <span> / </span>
33- <span *ngIf="!this.isUnlimited">{{ this.maxValue | number }}</span>
32+ <span *ngIf="!this.isUnlimited">{{ this.maxValue | htDisplayNumber }}</span>
3433 <span class="unlimited-symbol" *ngIf="this.isUnlimited">∞</span>
3534 <span class="units" *ngIf="this.units && !this.isUnlimited"> {{ this.units }}</span>
3635 </div>
You can’t perform that action at this time.
0 commit comments