Fix bug in rendering of system menu icons

This commit is contained in:
Naoki Takezoe
2017-10-23 15:27:29 +09:00
parent 902f7ef95f
commit 6f9450fece

View File

@@ -35,7 +35,7 @@
@menu(context).map { link =>
<li@if(active==link.id){ class="active"}>
<a href="@context.path/@link.path">
<i class="menu-icon octicon octicon-plug"></i>
<i class="menu-icon octicon octicon-@link.icon.getOrElse("plug")"></i>
<span>@link.label</span>
</a>
</li>