From 89641c502ef5771f93cfa55caea6b52c63e73b4b Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Thu, 14 Dec 2023 10:59:18 +0100 Subject: [PATCH] fix(front): fix dialog from EventParticipationCard.vue without input Signed-off-by: Thomas Citharel --- src/components/Event/EventParticipationCard.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Event/EventParticipationCard.vue b/src/components/Event/EventParticipationCard.vue index 45261ad2b..a8302e462 100644 --- a/src/components/Event/EventParticipationCard.vue +++ b/src/components/Event/EventParticipationCard.vue @@ -396,6 +396,7 @@ const openDeleteEventModal = ( placeholder: event.title, pattern: escapeRegExp(event.title), }, + hasInput: true, onConfirm: () => callback(event), }); };