-
-
Results
-
diff --git a/src/components/ParameterTable.vue b/src/components/ParameterTable.vue
index 19c25f9..2ef079b 100644
--- a/src/components/ParameterTable.vue
+++ b/src/components/ParameterTable.vue
@@ -1,25 +1,20 @@
-
- Parameter
+
+ Parameters
-
+
-
+
{{ index }}
diff --git a/src/store.js b/src/store.js
index 77a6cd0..3fda8d4 100644
--- a/src/store.js
+++ b/src/store.js
@@ -46,12 +46,14 @@ export const useStore = defineStore({
showLoadDialog: false,
selectedFile: null,
socratesOld: {}, //To suport old versions of the json input file
- errors: []
+ errors: [],
+ parametersEdited: false
}),
actions: {
// Define your actions here
async getParameters(){
this.parameters = await parameters();
+ this.parametersEdited = false;
},
deleteRotation(index) {
this.rotationTable.splice(index, 1);