summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/ConfiguratorModuleDelete.vue
diff options
context:
space:
mode:
authorUdo Walter2019-03-30 22:49:02 +0100
committerUdo Walter2019-03-30 22:49:02 +0100
commit8a4383885cb6bc19a2ce16bbad31ff0beada5ae2 (patch)
tree6d59120c2cea7c9d7e07d201af8f080d45a35945 /webapp/src/components/ConfiguratorModuleDelete.vue
parent[webapp] fix bug in groups; remember filters in systemlog (diff)
downloadbas-8a4383885cb6bc19a2ce16bbad31ff0beada5ae2.tar.gz
bas-8a4383885cb6bc19a2ce16bbad31ff0beada5ae2.tar.xz
bas-8a4383885cb6bc19a2ce16bbad31ff0beada5ae2.zip
[server] configurator api -> ipxeconfigs and ipxeentries api; [webapp] ui polishing
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 2d5a81d..2703e88 100644
--- a/webapp/src/components/ConfiguratorModuleDelete.vue
+++ b/webapp/src/components/ConfiguratorModuleDelete.vue
@@ -43,7 +43,7 @@ export default {
this.$store.commit('configurator/setDialog', data)
},
async deleteItems () {
- await this.$http.post('/api/configurator/' + this.dialog.info.itemType + '/?delete', {
+ await this.$http.post('/api/ipxe' + this.dialog.info.itemType + '/?delete', {
ids: this.dialog.info.selected.map(x => x.id)
})
this.$store.dispatch('configurator/loadData')