From c9226c24527ab109f19391b04fbe20f36649bd1d Mon Sep 17 00:00:00 2001 From: BilelJegham Date: Sun, 29 Oct 2023 17:51:10 +0100 Subject: [PATCH] fix: nav bar switch label --- src/components/NavBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index a06ac57..66292dc 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -18,7 +18,7 @@ const dialog = useDialog() - const items = ref([ + const items = computed(() => [ { icon: 'pi pi-home', class: 'navbar__home', to: HOME }, { label: t('MyBetsView.title'), to: MY_BETS, visible: () => auth.isConnected && !isLoading.value }, {