From 91a12bf2f43b86418aea01a799ea02b3179adcc2 Mon Sep 17 00:00:00 2001 From: Filipe Santos <48060475+fc-santos@users.noreply.github.com> Date: Wed, 4 Dec 2024 13:10:24 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20d=C3=A9sactiver=20le=20swipe=20sur=20l'E?= =?UTF-8?q?ventItem=20lorsque=20le=20multi=20select=20est=20actif=20(#169)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: fc-santos --- app/src/components/EventItem.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/components/EventItem.tsx b/app/src/components/EventItem.tsx index ae9a3bc91..a57264cd1 100644 --- a/app/src/components/EventItem.tsx +++ b/app/src/components/EventItem.tsx @@ -218,7 +218,9 @@ const EventItem = ({ ) } - return ( + return activateSelection ? ( + <>{body} + ) : (