diff --git a/packages/component-manuscript/src/components/ManuscriptPage.js b/packages/component-manuscript/src/components/ManuscriptPage.js index 8181e39c4e84516c8d2c494507aa01b3539facae..a832022fdb722c6e9fe0dd077639eed86e449147 100644 --- a/packages/component-manuscript/src/components/ManuscriptPage.js +++ b/packages/component-manuscript/src/components/ManuscriptPage.js @@ -40,10 +40,7 @@ export default compose( withState('editorInChief', 'setEiC', 'N/A'), ConnectPage(({ match }) => [ actions.getCollection({ id: match.params.project }), - actions.getFragment( - { id: match.params.project }, - { id: match.params.version }, - ), + actions.getFragments({ id: match.params.project }), ]), connect( (state, { match }) => ({ diff --git a/packages/component-manuscript/src/components/utils.js b/packages/component-manuscript/src/components/utils.js index f3aefdd957a6371e2e4b5d46f90fe900b20c85c6..5b2221a561a185987d824271e9dac2fc7fa6b926 100644 --- a/packages/component-manuscript/src/components/utils.js +++ b/packages/component-manuscript/src/components/utils.js @@ -74,9 +74,7 @@ export const parseSearchParams = url => { export const parseVersionOptions = (fragments = []) => fragments.map(f => ({ value: f.id, - label: `Version ${f.version} - updated on ${moment(f.submitted).format( - 'DD.MM.YYYY', - )}`, + label: `Version ${f.version}`, })) const alreadyAnswered = `You have already answered this invitation.` diff --git a/packages/components-faraday/src/components/Dashboard/ReviewerDecision.js b/packages/components-faraday/src/components/Dashboard/ReviewerDecision.js index 08bfbff9dc1dbd96821f8b40eb6e881604117aea..45a32fdb91a2d83c174d77729f3c76c77bef9118 100644 --- a/packages/components-faraday/src/components/Dashboard/ReviewerDecision.js +++ b/packages/components-faraday/src/components/Dashboard/ReviewerDecision.js @@ -99,7 +99,7 @@ const DecisionButton = styled(Button)` background-color: ${({ primary }) => primary ? th('colorPrimary') : th('backgroundColorReverse')}; color: ${({ primary }) => - primary ? th('colorTextReverse') : th('colorPrimary')}); + primary ? th('colorTextReverse') : th('colorPrimary')}; height: calc(${th('subGridUnit')} * 5); margin-left: ${th('gridUnit')}; padding: 0; diff --git a/packages/components-faraday/src/components/index.js b/packages/components-faraday/src/components/index.js index 902783170936776d49e7d22e542c1ad670bf9699..525ddeb0919f6fc43f7c3a9869b490d110e55adb 100644 --- a/packages/components-faraday/src/components/index.js +++ b/packages/components-faraday/src/components/index.js @@ -6,6 +6,7 @@ export { default as Steps } from './Steps/Steps' export { default as Files } from './Files/Files' export { default as AppBar } from './AppBar/AppBar' export { default as AuthorList } from './AuthorList/AuthorList' +export { default as withVersion } from './Dashboard/withVersion.js' export { default as SortableList } from './SortableList/SortableList' export { Decision }