Skip to content

Commit

Permalink
🐛 Fix pointer event issue
Browse files Browse the repository at this point in the history
  • Loading branch information
arthaud-proust committed Dec 22, 2024
1 parent bef4c70 commit 7e4c855
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion resources/js/Components/FlashedMessages.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,11 @@ watch(
<template>
<Teleport to="body">
<div
class="fixed left-4 right-4 top-4 z-50 flex flex-col items-center gap-2"
class="pointer-events-none fixed left-4 right-4 top-4 z-50 flex flex-col items-center gap-2"
v-if="toasts.size"
>
<VToast
class="pointer-events-auto"
v-for="[id, toast] in toasts.entries()"
:key="id"
:content="toast.content"
Expand Down

0 comments on commit 7e4c855

Please sign in to comment.