Skip to content
Snippets Groups Projects
Commit f92f5fad authored by Bogdan Cochior's avatar Bogdan Cochior
Browse files

style(details): make abstract expanded on start

parent bf476f71
No related branches found
No related tags found
1 merge request!8Sprint #10
...@@ -11,7 +11,7 @@ stages: ...@@ -11,7 +11,7 @@ stages:
- demo - demo
build: build:
image: docker:latest image: docker:stable
stage: build stage: build
script: script:
- docker version - docker version
......
...@@ -14,7 +14,7 @@ const ManuscriptDetails = ({ ...@@ -14,7 +14,7 @@ const ManuscriptDetails = ({
<Root> <Root>
<Expandable label="Details" startExpanded> <Expandable label="Details" startExpanded>
{!!abstract && ( {!!abstract && (
<Expandable label="abstract"> <Expandable label="abstract" startExpanded>
<Text dangerouslySetInnerHTML={{ __html: abstract }} /> <Text dangerouslySetInnerHTML={{ __html: abstract }} />
</Expandable> </Expandable>
)} )}
...@@ -29,7 +29,7 @@ const ManuscriptDetails = ({ ...@@ -29,7 +29,7 @@ const ManuscriptDetails = ({
</Expandable> </Expandable>
)} )}
{!isEmpty(files) && ( {!isEmpty(files) && (
<Expandable label="files" startExpanded> <Expandable label="files">
<Files <Files
downloadFile={downloadFile} downloadFile={downloadFile}
files={files} files={files}
......
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