diff --git a/changes/changelog.d/103.bugfix b/changes/changelog.d/103.bugfix new file mode 100644 index 000000000..59b83abde --- /dev/null +++ b/changes/changelog.d/103.bugfix @@ -0,0 +1 @@ +Fixed synchronized start/stop radio buttons for all custom radios (#103) diff --git a/front/src/components/radios/Button.vue b/front/src/components/radios/Button.vue index 819aa8651..0869313a8 100644 --- a/front/src/components/radios/Button.vue +++ b/front/src/components/radios/Button.vue @@ -31,7 +31,7 @@ export default { if (!state.running) { return false } else { - return current.type === this.type & current.objectId === this.objectId + return current.type === this.type && current.objectId === this.objectId && current.customRadioId === this.customRadioId } } }