Workaround ModLoader capitalization issue and make loaders list collapsible (#490)

This commit is contained in:
Prospector
2022-05-23 21:38:17 -07:00
committed by GitHub
parent 21df0e32c4
commit ec87821bcd
3 changed files with 62 additions and 7 deletions

View File

@@ -3,7 +3,10 @@
<span
v-for="category in categoriesFiltered"
:key="category.name"
v-html="category.icon + category.name"
v-html="
category.icon +
(category.name === 'modloader' ? 'ModLoader' : category.name)
"
/>
</div>
</template>