From 8680ce765111ad7c7d127183eee3317990a0fbf7 Mon Sep 17 00:00:00 2001 From: Aaron Date: Thu, 4 Apr 2024 16:26:12 -0500 Subject: [PATCH] chore: Fix type error --- web/components/MainSidebar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/MainSidebar.vue b/web/components/MainSidebar.vue index d5f7f22..4fe52e8 100644 --- a/web/components/MainSidebar.vue +++ b/web/components/MainSidebar.vue @@ -36,7 +36,7 @@ const links = computed(() => [ badge: warningsBadge.value ? { color: 'yellow', - label: warningsBadge.value, + label: String(warningsBadge.value), } : undefined, click: () => void (tab.value = 'warnings'),