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

Fix non-existent temperature argument

parent 08e05ec9
No related branches found
No related tags found
No related merge requests found
...@@ -81,7 +81,7 @@ export default class CycleChart extends Component { ...@@ -81,7 +81,7 @@ export default class CycleChart extends Component {
this.chartSymptoms.push('temperature') this.chartSymptoms.push('temperature')
} }
const columnData = this.makeColumnInfo(nfpLines(), this.chartSymptoms) const columnData = this.makeColumnInfo()
this.setState({ this.setState({
columns: columnData, columns: columnData,
chartHeight: height chartHeight: height
......
...@@ -52,7 +52,7 @@ export default class DayColumn extends Component { ...@@ -52,7 +52,7 @@ export default class DayColumn extends Component {
this.fhmAndLtl = props.getFhmAndLtlInfo( this.fhmAndLtl = props.getFhmAndLtlInfo(
props.dateString, props.dateString,
props.temp, this.data.temperature,
props.columnHeight props.columnHeight
) )
} }
......
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