From 587682c6a8ff385c1554cec98bc61a70fba3c5df Mon Sep 17 00:00:00 2001
From: Alexandru Munteanu <alexandru.munt@gmail.com>
Date: Wed, 19 Sep 2018 17:36:39 +0300
Subject: [PATCH] fix(he-response): fix errors after CR

---
 .../src/manuscriptDetails/HandlingEditorAnswer.js           | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/packages/component-faraday-ui/src/manuscriptDetails/HandlingEditorAnswer.js b/packages/component-faraday-ui/src/manuscriptDetails/HandlingEditorAnswer.js
index ceba4d642..53f4ca168 100644
--- a/packages/component-faraday-ui/src/manuscriptDetails/HandlingEditorAnswer.js
+++ b/packages/component-faraday-ui/src/manuscriptDetails/HandlingEditorAnswer.js
@@ -28,9 +28,8 @@ const HandlingEditorAnswer = ({
   decision,
   isFetching,
   handleSubmit,
-  shouldShowComments,
-  //
   onSubmitForm,
+  shouldShowComments,
 }) => (
   <ContextualBox
     expanded={expanded}
@@ -56,7 +55,7 @@ const HandlingEditorAnswer = ({
     </RowOverrideAlert>
 
     {shouldShowComments && (
-      <RowOverrideAlert ml={1} mt={2}>
+      <RowOverrideAlert ml={1} mt={2} pr={2}>
         <Item vertical>
           <Label>
             Decline Reason{' '}
@@ -96,6 +95,7 @@ export default compose(
   })),
   reduxForm({
     form: 'he-answer-invitation',
+    destroyOnUnmount: false,
     onSubmit: (values, dispatch, { onResponse, setFetching }) => modalProps => {
       onResponse(values, { ...modalProps, setFetching })
     },
-- 
GitLab