diff --git a/components/cycle-day/symptoms/temperature.js b/components/cycle-day/symptoms/temperature.js index 9a5efc2..f8d2bcb 100644 --- a/components/cycle-day/symptoms/temperature.js +++ b/components/cycle-day/symptoms/temperature.js @@ -38,7 +38,7 @@ export default class Temp extends Component { if (temp) { const [integer, fractional] = temp.value.toString().split('.') this.state.integer = integer - this.state.fractional = fractional + this.state.fractional = fractional || '0' } else { const prevTemp = getPreviousTemperature(this.cycleDay) if (prevTemp) {