aboutsummaryrefslogtreecommitdiffstats
path: root/components/editor/SidebarCategory.vue
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-03-10 01:56:33 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-03-10 01:56:33 +0000
commit4d2f28ecead7514a957d343b9d4d139afaa48421 (patch)
treee5e92173f2f7006bc70f9d3768a13048e78abae0 /components/editor/SidebarCategory.vue
parent5def5ad30934b13193e4b0d9e291025255b21ff4 (diff)
Fix broken fontawesome references
Diffstat (limited to 'components/editor/SidebarCategory.vue')
-rw-r--r--components/editor/SidebarCategory.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/editor/SidebarCategory.vue b/components/editor/SidebarCategory.vue
index 3e0db9b..9dedf33 100644
--- a/components/editor/SidebarCategory.vue
+++ b/components/editor/SidebarCategory.vue
@@ -35,7 +35,7 @@ const selected = computed(() => {
<div id="category-container" :class="{ selected: selected }">
<span id="category-title" @click="setSelectedCategory">
<font-awesome-icon @click.stop="expandCategory" class="category-icon"
- :icon="expanded ? ['fas', 'fa-caret-down'] : ['fas', 'fa-caret-up']" />
+ :icon="expanded ? ['fas', 'caret-down'] : ['fas', 'caret-up']" />
<span id="category-name">
<span id="category-display-name">{{ stripColorCodes(category.display.name) }}</span>
<code id="category-display-id">{{ category.id }}</code>