Skip to content

Commit

Permalink
Merge pull request #16679 from davelopez/fix_masthead_notifications_icon
Browse files Browse the repository at this point in the history
Fix notifications icon not showing in Masthead
  • Loading branch information
davelopez authored Sep 13, 2023
2 parents 7822a0c + 4e9d658 commit 756adbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/Masthead/Masthead.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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"]);
Expand Down

0 comments on commit 756adbb

Please sign in to comment.