summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/ConfiguratorModuleEntry.vue
diff options
context:
space:
mode:
authorUdo Walter2019-02-26 00:17:17 +0100
committerUdo Walter2019-02-26 00:17:17 +0100
commit67f6dd188b2dbbfa60e28ee020a784bcf021a509 (patch)
treea93fc09728c7178f083b2a0f0114273ba6b96e28 /webapp/src/components/ConfiguratorModuleEntry.vue
parent[webapp/groups] ipranges design change; add icons to some tabs (diff)
downloadbas-67f6dd188b2dbbfa60e28ee020a784bcf021a509.tar.gz
bas-67f6dd188b2dbbfa60e28ee020a784bcf021a509.tar.xz
bas-67f6dd188b2dbbfa60e28ee020a784bcf021a509.zip
[webapp] small ui fixes
Diffstat (limited to 'webapp/src/components/ConfiguratorModuleEntry.vue')
-rw-r--r--webapp/src/components/ConfiguratorModuleEntry.vue5
1 files changed, 2 insertions, 3 deletions
diff --git a/webapp/src/components/ConfiguratorModuleEntry.vue b/webapp/src/components/ConfiguratorModuleEntry.vue
index bd6f4e9..3eeebc4 100644
--- a/webapp/src/components/ConfiguratorModuleEntry.vue
+++ b/webapp/src/components/ConfiguratorModuleEntry.vue
@@ -17,7 +17,7 @@
<template>
<v-card style="overflow: hidden">
- <v-card-title primary-title class="dialog-title elevation-3">
+ <v-card-title class="dialog-title elevation-3">
<div class="headline">{{ dialog.info.id ? $t('titleExisting') : $t('titleNew') }}</div>
</v-card-title>
<v-card-text style="height: 100%;">
@@ -35,7 +35,6 @@
</template>
<script>
-import axios from 'axios'
import { mapState } from 'vuex'
export default {
@@ -74,7 +73,7 @@ export default {
async saveEntry () {
let url = '/api/configurator/entries'
if (this.dialog.info.id !== undefined) url += '/' + this.dialog.info.id
- await axios.post(url, {
+ await this.$http.post(url, {
name: this.name,
script: this.script
})