diff --git a/src/components/ValueId.vue b/src/components/ValueId.vue index 459db37f4d0..d7f43e4c6db 100644 --- a/src/components/ValueId.vue +++ b/src/components/ValueId.vue @@ -189,6 +189,11 @@ export default { }, methods: { updateValue (v, customValue) { + // needed for on/off control to update the newValue + if (customValue !== undefined) { + v.newValue = customValue + } + this.$emit('updateValue', v, customValue) } }