diff --git a/packages/component-faraday-ui/src/ManuscriptCard.js b/packages/component-faraday-ui/src/ManuscriptCard.js index 7206f71edf925cad2e361b245946c81816d04d9e..eff1058c131c0ee1621c6af660af0699d5cd3910 100644 --- a/packages/component-faraday-ui/src/ManuscriptCard.js +++ b/packages/component-faraday-ui/src/ManuscriptCard.js @@ -75,7 +75,7 @@ const ManuscriptCard = ({ </Text> )} </Row> - <Row alignItems="center" justify="flex-start"> + <Row alignItems="center" height={5} justify="flex-start"> <H4>Handling editor</H4> <Text ml={1} mr={3} whiteSpace="nowrap"> {get(handlingEditor, 'name', 'Unassigned')} diff --git a/packages/component-wizard/src/components/SubmissionWizard.js b/packages/component-wizard/src/components/SubmissionWizard.js index 018ee6968b765eac3100510ca8612754f95e5673..d4d3d9c353e32e188a4b1ec817e379af60312c4e 100644 --- a/packages/component-wizard/src/components/SubmissionWizard.js +++ b/packages/component-wizard/src/components/SubmissionWizard.js @@ -51,6 +51,7 @@ import { onChange, onSubmit, setInitialValues, validate } from './utils' const Wizard = ({ step, history, + canEdit, journal, prevStep, isEditMode, @@ -58,13 +59,12 @@ const Wizard = ({ isFirstStep, handleSubmit, getButtonText, - isLastFragment, isFilesFetching, isAuthorsFetching, journal: { manuscriptTypes = [] }, ...rest }) => - isLastFragment ? ( + canEdit ? ( <Root className="wizard-root"> <Steps currentStep={step}> {wizardSteps.map(({ stepTitle }) => ( @@ -180,8 +180,13 @@ export default compose( reduxAuthorError, isLastFragment: get(fragment, 'id', '') === last(get(collection, 'fragments', [])), + status: get(collection, 'status', ''), }), ), + withProps(({ status, isLastFragment }) => ({ + canEdit: + isLastFragment && !(status === 'accepted' || status === 'rejected'), + })), withHandlers({ getButtonText: ({ isLastStep, isEditMode }) => () => { if (isEditMode && isLastStep) {