diff --git a/components/cycle-day/cycle-day-overview.js b/components/cycle-day/cycle-day-overview.js index f9edf06..5218864 100644 --- a/components/cycle-day/cycle-day-overview.js +++ b/components/cycle-day/cycle-day-overview.js @@ -12,7 +12,7 @@ import { mucusNFP as computeSensiplanMucusLabels, cervixOpening as openingLabels, cervixFirmness as firmnessLabels, - cervixPosition as positionLabels + positionOrIntensity as positionLabels } from './labels/labels' import cycleDayModule from '../../lib/cycle' import { bleedingDaysSortedByDate } from '../../db' diff --git a/components/cycle-day/labels/labels.js b/components/cycle-day/labels/labels.js index 6e294ef..f5ef013 100644 --- a/components/cycle-day/labels/labels.js +++ b/components/cycle-day/labels/labels.js @@ -4,11 +4,11 @@ export const mucusTexture = ['nothing', 'creamy', 'egg white'] export const mucusNFP = ['t', 'Ø', 'f', 'S', '+S'] export const cervixOpening = ['closed', 'medium', 'open'] export const cervixFirmness = ['hard', 'soft'] -export const cervixPosition = ['low', 'medium', 'high'] +export const positionOrIntensity = ['low', 'medium', 'high'] export const fertilityStatus = { fertile: 'fertile', infertile: 'infertile', fertileUntilEvening: 'Fertile phase ends in the evening', unknown: 'We cannot show any cycle information because no menses has been entered' -} \ No newline at end of file +} diff --git a/components/cycle-day/symptoms/cervix.js b/components/cycle-day/symptoms/cervix.js index 59d9d8b..b7cabbb 100644 --- a/components/cycle-day/symptoms/cervix.js +++ b/components/cycle-day/symptoms/cervix.js @@ -10,7 +10,7 @@ import { saveSymptom } from '../../../db' import { cervixOpening as openingLabels, cervixFirmness as firmnessLabels, - cervixPosition as positionLabels + positionOrIntensity as positionLabels } from '../labels/labels' export default class Cervix extends Component {