Fix #103: synchronized start/stop radio buttons for all custom radios
This commit is contained in:
parent
eca00b9a0a
commit
5db8c950cc
|
@ -0,0 +1 @@
|
||||||
|
Fixed synchronized start/stop radio buttons for all custom radios (#103)
|
|
@ -31,7 +31,7 @@ export default {
|
||||||
if (!state.running) {
|
if (!state.running) {
|
||||||
return false
|
return false
|
||||||
} else {
|
} else {
|
||||||
return current.type === this.type & current.objectId === this.objectId
|
return current.type === this.type && current.objectId === this.objectId && current.customRadioId === this.customRadioId
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue