From 3aa1c990b710d4b6e933573a47f86d2a3bdf0b77 Mon Sep 17 00:00:00 2001
From: Audrey Hamelers <hamelers@ebi.ac.uk>
Date: Tue, 26 Mar 2019 14:02:10 +0000
Subject: [PATCH] #516

---
 app/components/activity/ManualCitation.jsx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app/components/activity/ManualCitation.jsx b/app/components/activity/ManualCitation.jsx
index 61f28fba2..3f662997e 100644
--- a/app/components/activity/ManualCitation.jsx
+++ b/app/components/activity/ManualCitation.jsx
@@ -47,7 +47,7 @@ const FPage = props => (
 const LPage = props => (
   <TextField className={props.className} label="Last page" {...props.field} />
 )
-const Elocation = props => (
+const ELocation = props => (
   <TextField className={props.className} label="eLocation" {...props.field} />
 )
 const DOI = props => <TextField label="DOI" {...props.field} />
@@ -109,7 +109,7 @@ const CitationForm = ({ values, errors, touched, ...props }) => (
             className={!values.fpage && values.elocationId && 'current'}
             onClick={e => toggleSwitch(e.currentTarget)}
           >
-            Elocation
+            eLocation
           </Action>
         </SmallToggle>
         <Flex>
@@ -125,7 +125,7 @@ const CitationForm = ({ values, errors, touched, ...props }) => (
           />
           <Field
             className={(!values.elocationId || values.fpage) && 'hidden'}
-            component={Elocation}
+            component={ELocation}
             name="elocationId"
           />
         </Flex>
-- 
GitLab