Skip to content

Commit

Permalink
Fix formatting of double type to string using G29 format
Browse files Browse the repository at this point in the history
  • Loading branch information
KrzysztofPajak committed Sep 15, 2021
1 parent c6fcb34 commit 268b341
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<admin-label asp-for="AmountToPaid" />
<div class="col-md-9 col-sm-9">
<admin-input asp-for="AmountToPaid" /> &nbsp; <span style="white-space: nowrap">
@string.Format(Loc["Admin.PaymentTransaction.Fields.PartialPaid.AmountToPaid.Max"], Model.MaxAmountToPaid.ToString("G29"), Model.CurrencyCode)
@string.Format(Loc["Admin.PaymentTransaction.Fields.PartialPaid.AmountToPaid.Max"], Model.MaxAmountToPaid.ToString("N2"), Model.CurrencyCode)
</span>
</div>
</div>
Expand Down

0 comments on commit 268b341

Please sign in to comment.