diff --git a/Views/Home/_Settings.cshtml b/Views/Home/_Settings.cshtml index 148b365..aadd728 100644 --- a/Views/Home/_Settings.cshtml +++ b/Views/Home/_Settings.cshtml @@ -191,7 +191,7 @@
- Version 1.1.5 + Version 1.1.6

Proudly developed in the rural town of Price, Utah by Hargata Softworks. diff --git a/Views/Vehicle/_SupplyRecords.cshtml b/Views/Vehicle/_SupplyRecords.cshtml index 59fb3c8..fe96496 100644 --- a/Views/Vehicle/_SupplyRecords.cshtml +++ b/Views/Vehicle/_SupplyRecords.cshtml @@ -12,8 +12,8 @@

- @($"{translator.Translate(userLanguage,"# of Supply Records")}: {Model.Count()}") - @($"{translator.Translate(userLanguage,"Total")}: {Model.Sum(x => x.Cost).ToString("C")}") + @($"{translator.Translate(userLanguage, "# of Supply Records")}: {Model.Count()}") + @($"{translator.Translate(userLanguage, "Total")}: {Model.Sum(x => x.Cost).ToString("C")}") @foreach (string recordTag in recordTags) { @recordTag @@ -76,7 +76,7 @@ @supplyRecord.PartSupplier @supplyRecord.Description @supplyRecord.Quantity - @((hideZero && supplyRecord.Cost == default) ? "---" : supplyRecord.Cost.ToString("C")) + @((hideZero && supplyRecord.Cost == default) ? "---" : supplyRecord.Cost.ToString("C")) @CarCareTracker.Helper.StaticHelper.TruncateStrings(supplyRecord.Notes) }