Fixed crash with function stringify

This commit is contained in:
Alexis
2024-06-08 14:18:19 +02:00
parent f963116018
commit 3002ae593c
5 changed files with 27 additions and 19 deletions

View File

@@ -1,6 +1,4 @@
<script lang="ts" setup>
import { PhMagnifyingGlass } from '@phosphor-icons/vue';
useHead({
title: 'Calendrier'
})
@@ -15,17 +13,6 @@ watch(user, (n, _o) => {
navigateTo('/')
}
})
const { setCurrentMenu } = useUiStore()
const { revealAdvancedSearch } = useCalendar()
setCurrentMenu([
{
phIcon: PhMagnifyingGlass,
tooltip: 'Recherche avancée',
clickHandler: revealAdvancedSearch
}
])
</script>
<template>