fix(front): fix dialog from EventParticipationCard.vue without input

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2023-12-14 10:59:18 +01:00
parent 442d072857
commit 89641c502e
No known key found for this signature in database
GPG key ID: A061B9DDE0CA0773

View file

@ -396,6 +396,7 @@ const openDeleteEventModal = (
placeholder: event.title, placeholder: event.title,
pattern: escapeRegExp(event.title), pattern: escapeRegExp(event.title),
}, },
hasInput: true,
onConfirm: () => callback(event), onConfirm: () => callback(event),
}); });
}; };