From 4e9d65827b8ab87e360ec2ef8ba76e6a0771943c Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Tue, 12 Sep 2023 14:30:49 +0200 Subject: [PATCH] Fix notifications icon not showing in Masthead --- client/src/components/Masthead/Masthead.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/Masthead/Masthead.vue b/client/src/components/Masthead/Masthead.vue index 21a26bc7b6d7..21f44f39fe72 100644 --- a/client/src/components/Masthead/Masthead.vue +++ b/client/src/components/Masthead/Masthead.vue @@ -6,7 +6,7 @@ import { withPrefix } from "utils/redirect"; import { onBeforeMount, onMounted, reactive, ref, watch } from "vue"; import { useRoute } from "vue-router/composables"; -import { isConfigLoaded, useConfig } from "@/composables/config"; +import { useConfig } from "@/composables/config"; import { useUserStore } from "@/stores/userStore"; import { loadWebhookMenuItems } from "./_webhooks"; @@ -19,7 +19,7 @@ import NotificationsBell from "@/components/Notifications/NotificationsBell.vue" const { isAnonymous, showActivityBar } = storeToRefs(useUserStore()); const route = useRoute(); -const { config } = useConfig(); +const { config, isConfigLoaded } = useConfig(); const emit = defineEmits(["open-url"]);