Skip to content
Snippets Groups Projects
Commit 896f407f authored by Julia Friesel's avatar Julia Friesel
Browse files

Rename default low and high

parent 76c47a96
No related branches found
No related tags found
No related merge requests found
......@@ -63,8 +63,8 @@ class TempSlider extends Component {
constructor(props) {
super(props)
this.state = {
min: config.temperatureScale.low,
max: config.temperatureScale.high
min: config.temperatureScale.defaultLow,
max: config.temperatureScale.defaultHigh
}
this.getStoredScale()
}
......
......@@ -2,8 +2,8 @@ const config = {
chartHeight: 350,
columnWidth: 25,
temperatureScale: {
low: 35,
high: 38,
defaultLow: 35,
defaultHigh: 38,
min: 34,
max: 40,
units: 0.1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment