Skip to content
Snippets Groups Projects
Commit b0dced72 authored by Lukas Jelonek's avatar Lukas Jelonek
Browse files

Fix bug: Custom icons not used for router links

parent fdb41409
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,8 @@
:to="{ name: e.name }"
active-class="active"
>
<i class="bi bi-file-earmark feather"></i>
<i v-if="e.icon" class="bi feather" :class="'bi-' + e.icon"></i>
<i v-else class="bi bi-file-earmark feather"></i>
{{ e.text }}
</router-link>
</li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment