diff --git a/frontend/src/components/ActionSelect.vue b/frontend/src/components/ActionSelect.vue index 0c351d0..c3f8eec 100644 --- a/frontend/src/components/ActionSelect.vue +++ b/frontend/src/components/ActionSelect.vue @@ -82,7 +82,7 @@ export default { if(store.selectedEvent ){ eventId=store.selectedEvent.header!=='DELETABLE'? store.selectedEvent.eventId : store.selectedEvent.parentId; } - const res =await api.get(`api/eventactions/${store.selectedEvent.eventId}`); + const res =await api.get(`api/eventactions/${eventId}`); actionData= res.data; const categoryNames = Array.from(new Set(actionData.map(x=>x.categoryname))); categorys.value=categoryNames;