mirror of
https://github.com/mempool/mempool.git
synced 2025-02-25 07:07:36 +01:00
Merge pull request #843 from MiguelMedeiros/fix-sum-bar-values
Fix total percentage bar value.
This commit is contained in:
commit
18e0a17d26
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ export class MempoolGraphComponent implements OnInit, OnChanges {
|
|||
</td>
|
||||
<td class="total-progress-sum-bar">
|
||||
<span class="total-percentage-bar-background">
|
||||
<span style="width: ${formatNumber(progressPercentageSum, this.locale, '1.2-2')}%; background-color: ${this.chartColorsOrdered[3]}"></span>
|
||||
<span style="width: ${progressPercentageSum.toFixed(2)}%; background-color: ${this.chartColorsOrdered[3]}"></span>
|
||||
</span>
|
||||
</td>
|
||||
</tr>`);
|
||||
|
|
Loading…
Add table
Reference in a new issue