Fixing bleeding and temperature button label on cycle day overview
This commit is contained in:
@@ -47,8 +47,8 @@ export default class DayView extends Component {
|
||||
let bleedingLabel
|
||||
if (this.cycleDay.bleeding) {
|
||||
const bleeding = this.cycleDay.bleeding
|
||||
if (typeof bleeding === 'number') {
|
||||
bleedingLabel = `${bleedingLabels[bleeding]}`
|
||||
if (typeof bleeding.value === 'number') {
|
||||
bleedingLabel = `${bleedingLabels[bleeding.value]}`
|
||||
if (bleeding.exclude) bleedingLabel = "( " + bleedingLabel + " )"
|
||||
}
|
||||
} else {
|
||||
@@ -58,8 +58,8 @@ export default class DayView extends Component {
|
||||
let temperatureLabel
|
||||
if (this.cycleDay.temperature) {
|
||||
const temperature = this.cycleDay.temperature
|
||||
if (typeof temperature === 'number') {
|
||||
temperatureLabel = `${temperature} °C - ${temperature.time}`
|
||||
if (typeof temperature.value === 'number') {
|
||||
temperatureLabel = `${temperature.value} °C - ${temperature.time}`
|
||||
if (temperature.exclude) {
|
||||
temperatureLabel = "( " + temperatureLabel + " )"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user