Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/DisplayBox/DisplayBox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ const DisplayBox = props => {
// -- Detail (ReactMarkdown supports Github-flavored markdown) --
const detailSection = card.detail ? (
<div>
<ReactMarkdown source={card.detail} />
<ReactMarkdown source={card.detail}>{card.detail}</ReactMarkdown>
</div>
) : (
<p style={{ color: 'grey' }}>None</p>
Expand Down Expand Up @@ -358,8 +358,8 @@ const DisplayBox = props => {
{/* Forms */}
{linksSection.length !== 0 ? (
<div>
<Typography color="text.secondary">Required Forms</Typography>
<Typography variant="div">{detailSection}</Typography>
<Typography color="text.secondary">Required Forms</Typography>
<List className={'links-section'}>{linksSection}</List>
</div>
) : (
Expand Down
Loading