Fix non-existent temperature argument

This commit is contained in:
Julia Friesel
2018-12-08 10:44:26 +01:00
parent 08e05ec984
commit 2213872606
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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
) )
} }