Skip to content

Commit

Permalink
feat: CQDG-895 handle multiple websites
Browse files Browse the repository at this point in the history
  • Loading branch information
atoulous committed Oct 23, 2024
1 parent 7c6e664 commit 2fe3880
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/views/StudyEntity/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
text-decoration: underline;
}

.marginRight {
margin-right: 8px;
}

.titleIcon {
font-size: 20px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/views/StudyEntity/utils/getSummaryDescriptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const getSummaryDescriptions = (study?: IStudyEntity): IEntityDescriptionsItem[]
value:
study?.websites?.length &&
study.websites.map((website, i) => (
<ExternalLink key={i} href={website}>
<ExternalLink key={i} href={website} className={styles.marginRight}>
{website}
</ExternalLink>
)),
Expand Down

0 comments on commit 2fe3880

Please sign in to comment.