Fix state handling on entity view page

This commit is contained in:
estevez
2018-09-29 17:59:38 +03:00
parent 6834f2ca34
commit 2fcd27d240
4 changed files with 19 additions and 4 deletions

View File

@ -45,9 +45,9 @@ class haUtils {
class StateChangedEvent {
String entityId;
String newState;
bool setToCollection;
bool localChange;
StateChangedEvent(this.entityId, this.newState, this.setToCollection);
StateChangedEvent(this.entityId, this.newState, this.localChange);
}
class SettingsChangedEvent {