Format numbers fix
This commit is contained in:
@@ -165,12 +165,12 @@
|
||||
<FooterContent>
|
||||
@if (showSummary)
|
||||
{
|
||||
<MudTd><b>@totalSum.ToString("N2")</b></MudTd>
|
||||
<MudTd><b>@NumberFormatHelper.FormatNumber(totalSum)</b></MudTd>
|
||||
@foreach (var column in displayedColumns)
|
||||
{
|
||||
@if (column.StartsWith("Value") && columnSums.ContainsKey(column))
|
||||
{
|
||||
<MudTd><b>@columnSums[column].ToString("N2")</b></MudTd>
|
||||
<MudTd><b>@NumberFormatHelper.FormatNumber(columnSums[column])</b></MudTd>
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user