From 5a5de81bec8f18ae0f27d528d862e6cf1438b54a Mon Sep 17 00:00:00 2001 From: Leonardo Bishop Date: Sun, 24 Aug 2025 17:51:06 +0100 Subject: Add dialog for conference deletion --- web/components/EventListing.vue | 1 + web/layouts/default.vue | 7 +++---- web/pages/conferences.vue | 33 ++++++++++++++++++++++++++------- 3 files changed, 30 insertions(+), 11 deletions(-) (limited to 'web') diff --git a/web/components/EventListing.vue b/web/components/EventListing.vue index 0cc546c..ca200ab 100644 --- a/web/components/EventListing.vue +++ b/web/components/EventListing.vue @@ -75,6 +75,7 @@ const removeFavourite = async () => { await $api(config.public.baseURL + '/favourites', { method: 'DELETE', body: JSON.stringify({ + conferenceId: conferenceStore.id, eventGuid: event.guid, eventId: event.id, }), diff --git a/web/layouts/default.vue b/web/layouts/default.vue index 5f85c38..90cabd5 100644 --- a/web/layouts/default.vue +++ b/web/layouts/default.vue @@ -1,5 +1,5 @@