Skip to content
Snippets Groups Projects
Commit d8a9777a authored by Andy Nicholson's avatar Andy Nicholson
Browse files

start re-arranging front page listing

parent 86799a2c
No related branches found
No related tags found
No related merge requests found
...@@ -41,6 +41,7 @@ const Frontpage = ({ history, ...props }) => { ...@@ -41,6 +41,7 @@ const Frontpage = ({ history, ...props }) => {
<Title>{manuscript.meta.title}</Title> <Title>{manuscript.meta.title}</Title>
</SectionHeader> </SectionHeader>
<SectionRow key={`manuscript-${manuscript.id}`}> <SectionRow key={`manuscript-${manuscript.id}`}>
<p>Abstract: {manuscript.submission?.abstract}</p>
<p> <p>
Visual abstract:{' '} Visual abstract:{' '}
<VisualAbstract <VisualAbstract
...@@ -48,12 +49,7 @@ const Frontpage = ({ history, ...props }) => { ...@@ -48,12 +49,7 @@ const Frontpage = ({ history, ...props }) => {
src={manuscript.visualAbstract} src={manuscript.visualAbstract}
/> />
</p> </p>
<p>Abstract: {manuscript.submission?.abstract}</p>
<p>
{manuscript.submitter.defaultIdentity.name} (
{manuscript.submission.affiliation})
</p>
<div> <div>
Submitted files: Submitted files:
{manuscript.files.map(file => ( {manuscript.files.map(file => (
...@@ -68,6 +64,7 @@ const Frontpage = ({ history, ...props }) => { ...@@ -68,6 +64,7 @@ const Frontpage = ({ history, ...props }) => {
</p> </p>
))} ))}
</div> </div>
<div> <div>
Submitted research objects: Submitted research objects:
{manuscript.submission?.links?.map(link => ( {manuscript.submission?.links?.map(link => (
...@@ -82,16 +79,7 @@ const Frontpage = ({ history, ...props }) => { ...@@ -82,16 +79,7 @@ const Frontpage = ({ history, ...props }) => {
</p> </p>
))} ))}
</div> </div>
<div>
Reviews:
{manuscript.reviews.map(
review =>
review.reviewComment && (
<p>&quot;{review.reviewComment?.content}&quot;</p>
),
)}
</div>
<div>Published: {manuscript.published}</div>
</SectionRow> </SectionRow>
</SectionContent> </SectionContent>
)) ))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment