diff --git a/front/src/components/ui/Popover.vue b/front/src/components/ui/Popover.vue index 45c6183c9..08ea68ab3 100644 --- a/front/src/components/ui/Popover.vue +++ b/front/src/components/ui/Popover.vue @@ -71,7 +71,7 @@ const position = computed(() => { }) // Popover close stack -let stack = inject(POPOVER_INJECTION_KEY) +let stack = inject(POPOVER_INJECTION_KEY, [ref(false)]) if (!stack) { provide(POPOVER_INJECTION_KEY, stack = shallowReactive([])) }