diff --git a/smart-hut/src/components/dashboard/devices/Curtain.js b/smart-hut/src/components/dashboard/devices/Curtain.js index b62470c..907e2ef 100644 --- a/smart-hut/src/components/dashboard/devices/Curtain.js +++ b/smart-hut/src/components/dashboard/devices/Curtain.js @@ -28,7 +28,7 @@ class Curtain extends Component { .saveDevice({ ...this.props.device, on }) .catch((err) => console.error("curtains update error", err)); }else{ - this.props.updateState({ id: this.props.sceneState.id, on: on },this.props.type); + this.props.updateState({ id: this.props.sceneState.id, on: on },this.props.sceneState.kind); } }; @@ -58,7 +58,7 @@ class Curtain extends Component { .saveDevice({ ...this.props.device, intensity }) .catch((err) => console.error("curtain update error", err)); }else{ - this.props.updateState({ id: this.props.sceneState.id, intensity: intensity },this.props.type); + this.props.updateState({ id: this.props.sceneState.id, intensity: intensity },this.props.sceneState.kind); } }; diff --git a/smart-hut/src/components/dashboard/devices/Light.js b/smart-hut/src/components/dashboard/devices/Light.js index bf68f1f..5ed15c1 100644 --- a/smart-hut/src/components/dashboard/devices/Light.js +++ b/smart-hut/src/components/dashboard/devices/Light.js @@ -64,7 +64,7 @@ class Light extends Component { .saveDevice({ ...this.props.device, on }) .catch((err) => console.error("regular light update error", err)); }else{ - this.props.updateState({ id: this.props.sceneState.id, on: on }, this.props.type); + this.props.updateState({ id: this.props.sceneState.id, on: on }, this.props.sceneState.kind); } }; @@ -98,7 +98,7 @@ class Light extends Component { .saveDevice({ ...this.props.device, intensity }) .catch((err) => console.error("regular light update error", err)); }else{ - this.props.updateState({ id: this.props.sceneState.id, intensity: intensity }, this.props.type); + this.props.updateState({ id: this.props.sceneState.id, intensity: intensity }, this.props.sceneState.kind); } }; diff --git a/smart-hut/src/components/dashboard/devices/SmartPlug.js b/smart-hut/src/components/dashboard/devices/SmartPlug.js index 77878e9..327558e 100644 --- a/smart-hut/src/components/dashboard/devices/SmartPlug.js +++ b/smart-hut/src/components/dashboard/devices/SmartPlug.js @@ -38,7 +38,7 @@ class SmartPlug extends Component { .saveDevice({ ...this.props.device, on }) .catch((err) => console.error("smart plug update error", err)); }else{ - this.props.updateState({ id: this.props.sceneState.id, on: on},this.props.type); + this.props.updateState({ id: this.props.sceneState.id, on: on},this.props.sceneState.kind); } }; diff --git a/smart-hut/src/components/dashboard/devices/Thermostats.js b/smart-hut/src/components/dashboard/devices/Thermostats.js index fd7bef5..a079a4e 100644 --- a/smart-hut/src/components/dashboard/devices/Thermostats.js +++ b/smart-hut/src/components/dashboard/devices/Thermostats.js @@ -68,7 +68,7 @@ class Thermostats extends Component { .saveDevice({ ...this.props.device, turnOn }) .catch((err) => console.error("thermostat update error", err)); }else{ - this.props.updateState({ id: this.props.sceneState.id, turnOn: turnOn },this.props.type); + this.props.updateState({ id: this.props.sceneState.id, turnOn: turnOn },this.props.sceneState.kind); } } @@ -79,7 +79,7 @@ class Thermostats extends Component { .saveDevice({ ...this.props.device, on }) .catch((err) => console.error("thermostat update error", err)); }else{ - this.props.updateState({ id: this.props.sceneState.id, on: on },this.props.type); + this.props.updateState({ id: this.props.sceneState.id, on: on },this.props.sceneState.kind); } }; @@ -90,7 +90,7 @@ class Thermostats extends Component { .saveDevice({ ...this.props.device, targetTemperature }) .catch((err) => console.error("thermostat update error", err)); }else{ - this.props.updateState({id: this.props.sceneState.id, targetTemperature: targetTemperature},this.props.type); + this.props.updateState({id: this.props.sceneState.id, targetTemperature: targetTemperature},this.props.sceneState.kind); } } @@ -118,7 +118,7 @@ class Thermostats extends Component { .saveDevice({ ...this.props.device, internalSensorTemperature }) .catch((err) => console.error("thermostat update error", err)); }else{ - this.props.updateState({ id: this.props.sceneState.id, internalSensorTemperature:internalSensorTemperature },this.props.type); + this.props.updateState({ id: this.props.sceneState.id, internalSensorTemperature:internalSensorTemperature },this.props.sceneState.kind); } }