We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e8556f commit fc1f338Copy full SHA for fc1f338
src/components/calibration/GeneralConfigCard.vue
@@ -22,6 +22,10 @@
22
<Radius />
23
<Offset />
24
</div>
25
+ <v-card-actions>
26
+ <v-spacer></v-spacer>
27
+ <v-btn color="error" @click="resetAllValues">Reset All</v-btn>
28
+ </v-card-actions>
29
</v-card>
30
</v-col>
31
</v-container>
@@ -81,6 +85,9 @@ export default {
81
85
},
82
86
updateMsPerCapture(value) {
83
87
this.$store.commit('setMsPerCapture', value);
88
+ },
89
+ resetAllValues() {
90
+ this.$store.commit('resetAll');
84
91
}
92
93
};
0 commit comments