-
+
+
diff --git a/client/components/pages/admin/UserWorkspaces.vue b/client/components/pages/admin/UserWorkspaces.vue
index 00f58b16..96ad4541 100644
--- a/client/components/pages/admin/UserWorkspaces.vue
+++ b/client/components/pages/admin/UserWorkspaces.vue
@@ -1,16 +1,16 @@
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/client/runtimeConfig.js b/client/runtimeConfig.js
index d094fb68..27344286 100644
--- a/client/runtimeConfig.js
+++ b/client/runtimeConfig.js
@@ -1,11 +1,3 @@
-function parseBoolean(value, defaultValue = false) {
- if (typeof value === 'string') {
- value = value.toLowerCase().trim()
- if (value === 'true' || value === '1') return true
- if (value === 'false' || value === '0') return false
- }
- return defaultValue
-}
function parseNumber(value, defaultValue = 0) {
const parsedValue = parseFloat(value)
diff --git a/client/stores/working_form.js b/client/stores/working_form.js
index 9a3b2bfb..59f811a9 100644
--- a/client/stores/working_form.js
+++ b/client/stores/working_form.js
@@ -160,27 +160,6 @@ export const useWorkingFormStore = defineStore("working_form", {
this.content.properties.splice(index, 1)
}
},
- removeField(field) {
- this.internalRemoveField(field)
- },
- internalRemoveField(field) {
- const index = this.objectToIndex(field)
-
- if (index !== -1) {
- useAlert().success('Ctrl + Z to undo',10000,{
- title: 'Field removed',
- actions: [{
- label: 'Undo',
- icon:"i-material-symbols-undo",
- click: () => {
- this.undo()
- }
- }]
- })
- this.content.properties.splice(index, 1)
- }
- },
-
moveField(oldIndex, newIndex) {
const newFields = clonedeep(this.content.properties)
const field = newFields.splice(oldIndex, 1)[0]