diff options
author | danvolchek <volchek2@illinois.edu> | 2019-02-17 21:31:07 -0600 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-02-24 18:41:00 -0500 |
commit | bbb33c96f1cf698eee1dd398526d9ea853c2fb2f (patch) | |
tree | 3a0b9246cb02e8d053bbb138981ff9a93d690616 /src/SMAPI.Web/Views/LogParser/Index.cshtml | |
parent | f676e0fe6d04f31d1614a4f533e20e7d8d499495 (diff) | |
download | SMAPI-bbb33c96f1cf698eee1dd398526d9ea853c2fb2f.tar.gz SMAPI-bbb33c96f1cf698eee1dd398526d9ea853c2fb2f.tar.bz2 SMAPI-bbb33c96f1cf698eee1dd398526d9ea853c2fb2f.zip |
fix availablity caption case
Diffstat (limited to 'src/SMAPI.Web/Views/LogParser/Index.cshtml')
-rw-r--r-- | src/SMAPI.Web/Views/LogParser/Index.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Views/LogParser/Index.cshtml b/src/SMAPI.Web/Views/LogParser/Index.cshtml index 3c842aed..bf70f2d7 100644 --- a/src/SMAPI.Web/Views/LogParser/Index.cshtml +++ b/src/SMAPI.Web/Views/LogParser/Index.cshtml @@ -125,7 +125,7 @@ else if (Model.ParsedLog?.IsValid == true) <p>You have some mods that aren't fully up to date. Updating them can fix problems.</p> <table id="updates" class="table"> <caption> - Updates Available: + Updates available: </caption> @foreach (LogModInfo mod in Model.ParsedLog.Mods.Where(mod => (mod.HasUpdate && mod.ContentPackFor == null) || (contentPacks != null && contentPacks.TryGetValue(mod.Name, out LogModInfo[] contentPackList) && contentPackList.Any(pack => pack.HasUpdate)))) { |