diff --git a/webapp/src/components/tabContentComponents/settingsComponents/stageControlSettings.vue b/webapp/src/components/tabContentComponents/settingsComponents/stageControlSettings.vue index 5548408f..5cfcec98 100644 --- a/webapp/src/components/tabContentComponents/settingsComponents/stageControlSettings.vue +++ b/webapp/src/components/tabContentComponents/settingsComponents/stageControlSettings.vue @@ -44,8 +44,9 @@ export default { name: "StageControlSettings", computed: { - // Note that as stepSize and invert are set based on internals we can use - // get() and set() to interact with the store. Instead use a deep watcher to + // Note that as stepSize and invert are mutated (i.e. we change stepSize.x not stepSize) + // rather than directly set we cannot use get() and set() computed to interact with the + // store as changed won't be detected by set(). Instead use a deep watcher to // update the store (see ``watch:`` below) stepSize() { return this.$store.state.navigationStepSize; diff --git a/webapp/src/components/tabContentComponents/settingsContent.vue b/webapp/src/components/tabContentComponents/settingsContent.vue index 97ca3fbc..681fadce 100644 --- a/webapp/src/components/tabContentComponents/settingsContent.vue +++ b/webapp/src/components/tabContentComponents/settingsContent.vue @@ -5,9 +5,9 @@