forgot cultureinfo.invariantculture for tostring()

This commit is contained in:
Frede Hundewadt 2022-08-07 08:04:49 +02:00
parent 263a33a22a
commit 0adc6acabb
2 changed files with 3 additions and 3 deletions

View file

@ -168,7 +168,7 @@ public partial class ActivityNewVisitPage : IDisposable
private void SelectPrice(decimal price)
{
Price = price.ToString("N2");
Price = price.ToString("N2", CultureInfo.InvariantCulture);
StateHasChanged();
}

View file

@ -1,8 +1,8 @@
{
"appInfo": {
"name": "Wonky Client",
"version": "0.10.66",
"rc": true,
"version": "0.10.72",
"rc": false,
"sandBox": false,
"image": "grumpy-coder.png"
},