From 1aad11b50464853b8a1f0f675efba488a3c02f3d Mon Sep 17 00:00:00 2001
From: Julia Friesel <julia.friesel@gmail.com>
Date: Thu, 17 Jan 2019 21:20:19 +0100
Subject: [PATCH] Fix label reference

---
 components/cycle-day/cycle-day-overview.js |  4 ++--
 i18n/en/cycle-day.js                       | 18 +++++++++---------
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/components/cycle-day/cycle-day-overview.js b/components/cycle-day/cycle-day-overview.js
index 88de3560..09e9ef9c 100644
--- a/components/cycle-day/cycle-day-overview.js
+++ b/components/cycle-day/cycle-day-overview.js
@@ -14,7 +14,7 @@ import * as labels from '../../i18n/en/cycle-day'
 import AppText from '../app-text'
 import DripIcon from '../../assets/drip-icons'
 
-const bleedingLabels = labels.bleeding
+const bleedingLabels = labels.bleeding.labels
 const feelingLabels = labels.mucus.feeling.categories
 const textureLabels = labels.mucus.texture.categories
 const openingLabels = labels.cervix.opening.categories
@@ -56,7 +56,7 @@ export default class CycleDayOverView extends Component {
     const l = {
       bleeding: bleeding => {
         if (isNumber(bleeding.value)) {
-          let bleedingLabel = `${bleedingLabels[bleeding.value]}`
+          let bleedingLabel = bleedingLabels[bleeding.value]
           if (bleeding.exclude) bleedingLabel = "( " + bleedingLabel + " )"
           return bleedingLabel
         }
diff --git a/i18n/en/cycle-day.js b/i18n/en/cycle-day.js
index 1a990f30..b3c783f5 100644
--- a/i18n/en/cycle-day.js
+++ b/i18n/en/cycle-day.js
@@ -2,15 +2,15 @@ export const mucusNFP = ['t', 'Ø', 'f', 'S', 'S+']
 export const intensity = ['low', 'medium', 'high']
 
 export const bleeding = {
-    labels: ['spotting', 'light', 'medium', 'heavy'],
-    heaviness: {
-        header: "Heaviness",
-        explainer: "How heavy is the bleeding?",
-    },
-    exclude: {
-        header: "Exclude",
-        explainer: "You can exclude this value if it's not menstrual bleeding"
-    }
+  labels: ['spotting', 'light', 'medium', 'heavy'],
+  heaviness: {
+    header: "Heaviness",
+    explainer: "How heavy is the bleeding?",
+  },
+  exclude: {
+    header: "Exclude",
+    explainer: "You can exclude this value if it's not menstrual bleeding"
+  }
 }
 
 export const cervix = {
-- 
GitLab