diff --git a/packages/component-faraday-ui/src/AuthorTag.js b/packages/component-faraday-ui/src/AuthorTag.js index 43a973a322bbab93891d849468d0383e0995ce03..de77649af2ef6640b21c315fe8cac3bf78bfa00c 100644 --- a/packages/component-faraday-ui/src/AuthorTag.js +++ b/packages/component-faraday-ui/src/AuthorTag.js @@ -15,10 +15,10 @@ const AuthorTag = ({ }, }) => ( <Root> - {affiliationNumber && <Superscript>{affiliationNumber}</Superscript>} <Text>{`${firstName} ${lastName}`}</Text> {isSubmitting && <Tag>SA</Tag>} {isCorresponding && <Tag>CA</Tag>} + {affiliationNumber && <Superscript>{affiliationNumber}</Superscript>} </Root> ) diff --git a/packages/component-faraday-ui/src/AuthorTagList.js b/packages/component-faraday-ui/src/AuthorTagList.js index 2d8268460f6b195f97862ad37951c025ae6915b1..4e9cd757a62866f19b3c66298d084cee967cd80d 100644 --- a/packages/component-faraday-ui/src/AuthorTagList.js +++ b/packages/component-faraday-ui/src/AuthorTagList.js @@ -82,8 +82,8 @@ const AuthorTagList = ({ <AffiliationRow> {affiliationList.map((a, i) => ( <Item flex={1} key={a}> - <Superscript>{i + 1}</Superscript> <Text>{a}</Text> + <Superscript>{i + 1}</Superscript> </Item> ))} </AffiliationRow> @@ -120,7 +120,6 @@ const Root = styled.div` font-family: ${th('fontReading')}; ` const AffiliationRow = styled(Row)` - border-left: 1px solid ${th('colorBackgroundHue')}; padding-left: ${th('gridUnit')}; flex-direction: column; `