From 30f44ca92320c02ff4270fb124afd9a4d1ff5b35 Mon Sep 17 00:00:00 2001 From: "xiaozhe.ma" Date: Tue, 24 Sep 2024 01:26:19 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=A2=E3=82=AF=E3=82=B7=E3=83=A7=E3=83=B3?= =?UTF-8?q?=E3=82=92=E3=82=A4=E3=83=99=E3=83=B3=E3=83=88=E3=81=AB=E9=81=A9?= =?UTF-8?q?=E7=94=A8=E8=A8=AD=E5=AE=9A=E3=81=AE=E4=B8=8D=E5=85=B7=E5=90=88?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/ActionSelect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;