diff --git a/smart-hut/src/components/dashboard/devices/DeviceSettingsModal.js b/smart-hut/src/components/dashboard/devices/DeviceSettingsModal.js index fc7956b..a5dad4f 100644 --- a/smart-hut/src/components/dashboard/devices/DeviceSettingsModal.js +++ b/smart-hut/src/components/dashboard/devices/DeviceSettingsModal.js @@ -98,7 +98,7 @@ class DeviceSettingsModal extends Component { deleteDevice() { this.props .deleteDevice(this.props.device) - .then(() => this.setState({ open: false })) + .then(() => this.setState({ openModal: false })) .catch((err) => console.error( `settings modal for device ${this.props.id} deletion error`, diff --git a/smart-hut/src/components/dashboard/devices/Thermostats.js b/smart-hut/src/components/dashboard/devices/Thermostats.js index 815bd46..ab08fa1 100644 --- a/smart-hut/src/components/dashboard/devices/Thermostats.js +++ b/smart-hut/src/components/dashboard/devices/Thermostats.js @@ -153,7 +153,8 @@ class Thermostats extends Component {
{" "} {this.props.device.measuredTemperature} ºC
- {this.state.targetTemperature.toFixed(1)} ºC + {" "} + {this.props.device.targetTemperature.toFixed(1)} ºC
{this.props.tab === "Devices" ? (