Skip to content

Commit

Permalink
Regression: Fix rendered markdown styling on app info page details se…
Browse files Browse the repository at this point in the history
…ction (#26093)
  • Loading branch information
rique223 committed Jul 12, 2022
1 parent e1262a3 commit 20966cc
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions apps/meteor/client/views/admin/apps/AppDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,7 @@ const AppDetails: FC<AppDetailsProps> = ({ app }) => {
<Box fontScale='h4' mbe='x8'>
{t('Description')}
</Box>
<Box
display='flex'
flexDirection='row'
mbe='neg-x16'
dangerouslySetInnerHTML={{ __html: isMarkdown ? detailedDescription.rendered : description }}
/>
<Box dangerouslySetInnerHTML={{ __html: isMarkdown ? detailedDescription.rendered : description }} withRichContent />
</Box>

<Box is='section'>
Expand Down

0 comments on commit 20966cc

Please sign in to comment.