move version closer to mod name in log parser
This commit is contained in:
parent
4cd7722583
commit
db0c88dbaf
|
@ -107,7 +107,7 @@ else
|
||||||
<tr v-on:click="toggleMod('@GetSlug(mod.Name)')" class="mod-entry" v-bind:class="{ hidden: !showMods['@GetSlug(mod.Name)'] }">
|
<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><input type="checkbox" v-bind:checked="showMods['@GetSlug(mod.Name)']" v-show="anyModsHidden" /></td>
|
||||||
<td v-pre>
|
<td v-pre>
|
||||||
<strong>@mod.Name</strong>
|
<strong>@mod.Name</strong> @mod.Version
|
||||||
@if (contentPacks != null && contentPacks.TryGetValue(mod.Name, out LogModInfo[] contentPackList))
|
@if (contentPacks != null && contentPacks.TryGetValue(mod.Name, out LogModInfo[] contentPackList))
|
||||||
{
|
{
|
||||||
<div class="content-packs">
|
<div class="content-packs">
|
||||||
|
@ -118,7 +118,6 @@ else
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</td>
|
</td>
|
||||||
<td v-pre>@mod.Version</td>
|
|
||||||
<td v-pre>@mod.Author</td>
|
<td v-pre>@mod.Author</td>
|
||||||
@if (mod.Errors == 0)
|
@if (mod.Errors == 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue