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

merge-requests/154/head
Eliot Berriot 2018-03-07 23:19:25 +01:00
rodzic eca00b9a0a
commit 5db8c950cc
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DD6965E2476E5C27
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

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

Wyświetl plik

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