summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/ConfiguratorModuleDelete.vue
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/ConfiguratorModuleDelete.vue')
-rw-r--r--webapp/src/components/ConfiguratorModuleDelete.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/src/components/ConfiguratorModuleDelete.vue b/webapp/src/components/ConfiguratorModuleDelete.vue
index dc9fe72..d630524 100644
--- a/webapp/src/components/ConfiguratorModuleDelete.vue
+++ b/webapp/src/components/ConfiguratorModuleDelete.vue
@@ -44,7 +44,7 @@ export default {
this.$store.commit('configurator/setDialog', data)
},
async deleteItems () {
- await axios.post('/api/configurator/delete/' + this.dialog.info.itemType, {
+ await axios.post('/api/configurator/' + this.dialog.info.itemType + '/?delete', {
ids: this.dialog.info.selected.map(x => x.id)
})
this.$store.dispatch('configurator/loadData')