fix: Add missing 'fas' prefix to group icon class
This commit is contained in:
parent
4766d4511e
commit
e8e922b845
|
|
@ -87,7 +87,7 @@
|
||||||
style="cursor: pointer; background-color: {{ group.color|default('#6c757d') }};">
|
style="cursor: pointer; background-color: {{ group.color|default('#6c757d') }};">
|
||||||
<div class="d-flex justify-content-between align-items-center">
|
<div class="d-flex justify-content-between align-items-center">
|
||||||
<h5 class="mb-0">
|
<h5 class="mb-0">
|
||||||
<i class="{{ group.icon|default('fa-server') }}"></i>
|
<i class="fas {{ group.icon|default('fa-server')|replace({'fas ': ''}) }}"></i>
|
||||||
{{ groupName }}
|
{{ groupName }}
|
||||||
<span class="badge bg-light text-dark ms-2">{{ group.servers|length }}</span>
|
<span class="badge bg-light text-dark ms-2">{{ group.servers|length }}</span>
|
||||||
</h5>
|
</h5>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue