From e44eb991f597690caa851a38b0c09ed3e726985a Mon Sep 17 00:00:00 2001 From: "DESKTOP-GENO133\\IvanPlex" Date: Sun, 11 Feb 2024 18:14:34 -0700 Subject: [PATCH] updated version number and fixed labels not updating in supplies page --- Views/Home/_Settings.cshtml | 2 +- Views/Vehicle/_SupplyRecords.cshtml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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) }