fix devices

This commit is contained in:
britea 2020-05-02 17:02:50 +02:00
parent 2c298ec4bb
commit 9537c12978
2 changed files with 3 additions and 2 deletions

View File

@ -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`,

View File

@ -153,7 +153,8 @@ class Thermostats extends Component {
<div style={targetTemperature}>
<Icon name="thermometer half" />{" "}
{this.props.device.measuredTemperature} ºC <br />
<Icon name="target" /> {this.state.targetTemperature.toFixed(1)} ºC
<Icon name="target" />{" "}
{this.props.device.targetTemperature.toFixed(1)} ºC
</div>
{this.props.tab === "Devices" ? (
<Slider