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) private void SelectPrice(decimal price)
{ {
Price = price.ToString("N2"); Price = price.ToString("N2", CultureInfo.InvariantCulture);
StateHasChanged(); StateHasChanged();
} }

View file

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