aboutsummaryrefslogtreecommitdiffstats
path: root/web/components
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2025-08-24 17:51:06 +0100
committerLeonardo Bishop <me@leonardobishop.com>2025-08-24 17:51:06 +0100
commit5a5de81bec8f18ae0f27d528d862e6cf1438b54a (patch)
treeb4638a6fe98b4b75b4d67759d307f632905fe6a1 /web/components
parent215aa87cfce77a4e14dad26eb7b2885c01952b83 (diff)
Add dialog for conference deletionHEADmaster
Diffstat (limited to 'web/components')
-rw-r--r--web/components/EventListing.vue1
1 files changed, 1 insertions, 0 deletions
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,
}),