diff --git a/components/cycle-day/cycle-day-overview.js b/components/cycle-day/cycle-day-overview.js index e653aa9..ceab0f5 100644 --- a/components/cycle-day/cycle-day-overview.js +++ b/components/cycle-day/cycle-day-overview.js @@ -97,7 +97,7 @@ class CycleDayOverView extends Component { symptom={symptom} symptomData={symptomData} onPress={() => this.props.navigate(symptomEditView)} - disabled={dateInFuture} + disabled={dateInFuture && symptom !== 'note'} />) }) } diff --git a/components/cycle-day/symptoms/note.js b/components/cycle-day/symptoms/note.js index 4dd7866..dc70254 100644 --- a/components/cycle-day/symptoms/note.js +++ b/components/cycle-day/symptoms/note.js @@ -11,7 +11,7 @@ import { saveSymptom } from '../../../db' class Note extends Component { static propTypes = { - cycleDay: PropTypes.object.isRequired, + cycleDay: PropTypes.object, date: PropTypes.string.isRequired }