diff --git a/src/components/modals/coresettings/CustomFieldsForm.vue b/src/components/modals/coresettings/CustomFieldsForm.vue
index 15a2cea..acc29da 100644
--- a/src/components/modals/coresettings/CustomFieldsForm.vue
+++ b/src/components/modals/coresettings/CustomFieldsForm.vue
@@ -224,7 +224,6 @@ export default {
})
.catch(e => {
this.$q.loading.hide();
- this.onOk();
this.notifyError("There was an error editing the custom field");
});
} else {
@@ -263,7 +262,7 @@ export default {
},
},
mounted() {
- // If pk prop is set that means we are editting
+ // If pk prop is set that means we are editing
if (this.field) Object.assign(this.localField, this.field);
// Set model to current tab
diff --git a/src/components/modals/coresettings/CustomFieldsTable.vue b/src/components/modals/coresettings/CustomFieldsTable.vue
index 872936f..5d07221 100644
--- a/src/components/modals/coresettings/CustomFieldsTable.vue
+++ b/src/components/modals/coresettings/CustomFieldsTable.vue
@@ -13,12 +13,7 @@
>
-
+
@@ -133,7 +128,7 @@ export default {
.onOk(() => {
this.$q.loading.show();
this.$axios
- .delete(`core/customfields/${field.id}/`)
+ .delete(`/core/customfields/${field.id}/`)
.then(r => {
this.refresh();
this.$q.loading.hide();
diff --git a/src/components/modals/coresettings/EditCoreSettings.vue b/src/components/modals/coresettings/EditCoreSettings.vue
index c1d38e3..9c371f0 100644
--- a/src/components/modals/coresettings/EditCoreSettings.vue
+++ b/src/components/modals/coresettings/EditCoreSettings.vue
@@ -8,6 +8,7 @@
+
@@ -293,10 +294,14 @@
+
+
+
+
-
+
+
+
+
+ {{ title }}
+
+
+ Close
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/modals/coresettings/KeyStoreTable.vue b/src/components/modals/coresettings/KeyStoreTable.vue
new file mode 100644
index 0000000..733e291
--- /dev/null
+++ b/src/components/modals/coresettings/KeyStoreTable.vue
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Edit
+
+
+
+
+
+ Delete
+
+
+
+
+
+ Close
+
+
+
+
+
+ {{ props.row.name }}
+
+
+
+ {{ props.row.value }}
+
+
+
+
+
+
+
+
\ No newline at end of file