Skip to content
Snippets Groups Projects
Verified Commit 5db8c950 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Fix #103: synchronized start/stop radio buttons for all custom radios

parent eca00b9a
No related branches found
No related tags found
No related merge requests found
Fixed synchronized start/stop radio buttons for all custom radios (#103)
......@@ -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
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment