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

This commit is contained in:
Eliot Berriot 2018-03-07 23:19:25 +01:00
parent eca00b9a0a
commit 5db8c950cc
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
2 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
Fixed synchronized start/stop radio buttons for all custom radios (#103)

View File

@ -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
}
}
}