diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-03-29 19:17:44 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-03-29 19:17:44 -0400 |
commit | db0c88dbaf4af8622cb9b88fab7ea10d715fd7f6 (patch) | |
tree | df550464d2e7384d2c2d277034738101ccf146b1 /src/SMAPI.Web/Views | |
parent | 4cd77225837b541bd6032539aa0895bade95181f (diff) | |
download | SMAPI-db0c88dbaf4af8622cb9b88fab7ea10d715fd7f6.tar.gz SMAPI-db0c88dbaf4af8622cb9b88fab7ea10d715fd7f6.tar.bz2 SMAPI-db0c88dbaf4af8622cb9b88fab7ea10d715fd7f6.zip |
move version closer to mod name in log parser
Diffstat (limited to 'src/SMAPI.Web/Views')
-rw-r--r-- | src/SMAPI.Web/Views/LogParser/Index.cshtml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/SMAPI.Web/Views/LogParser/Index.cshtml b/src/SMAPI.Web/Views/LogParser/Index.cshtml index b739ebbb..2d1c1b44 100644 --- a/src/SMAPI.Web/Views/LogParser/Index.cshtml +++ b/src/SMAPI.Web/Views/LogParser/Index.cshtml @@ -107,7 +107,7 @@ else <tr v-on:click="toggleMod('@GetSlug(mod.Name)')" class="mod-entry" v-bind:class="{ hidden: !showMods['@GetSlug(mod.Name)'] }"> <td><input type="checkbox" v-bind:checked="showMods['@GetSlug(mod.Name)']" v-show="anyModsHidden" /></td> <td v-pre> - <strong>@mod.Name</strong> + <strong>@mod.Name</strong> @mod.Version @if (contentPacks != null && contentPacks.TryGetValue(mod.Name, out LogModInfo[] contentPackList)) { <div class="content-packs"> @@ -118,7 +118,6 @@ else </div> } </td> - <td v-pre>@mod.Version</td> <td v-pre>@mod.Author</td> @if (mod.Errors == 0) { |