Fix total percentage bar value.

This commit is contained in:
Miguel Medeiros 2021-09-29 15:12:54 -03:00
parent 76a2fdeea7
commit 87eeef5d41
No known key found for this signature in database
GPG Key ID: 819EDEE4673F3EBB

View File

@ -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>`);