Skip to content

Commit

Permalink
Bump react-markdown from 2.5.0 to 4.0.8 (#610)
Browse files Browse the repository at this point in the history
* Bump react-markdown from 2.5.0 to 4.0.8

Bumps [react-markdown](https://github.com/rexxars/react-markdown) from 2.5.0 to 4.0.8.
- [Release notes](https://github.com/rexxars/react-markdown/releases)
- [Changelog](https://github.com/rexxars/react-markdown/blob/master/CHANGELOG.md)
- [Commits](remarkjs/react-markdown@v2.5.0...v4.0.8)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* force render to html
  • Loading branch information
dependabot-preview[bot] authored and SebastienGllmt committed Jun 16, 2019
1 parent 04e9351 commit 98fc559
Show file tree
Hide file tree
Showing 6 changed files with 274 additions and 70 deletions.
2 changes: 1 addition & 1 deletion app/components/profile/terms-of-use/TermsOfUseText.js
Expand Up @@ -24,7 +24,7 @@ export default class TermsOfUseText extends Component<Props> {

return (
<div className={termsClassNames}>
<ReactMarkdown source={this.props.localizedTermsOfUse} />
<ReactMarkdown source={this.props.localizedTermsOfUse} escapeHtml={false} />
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion app/components/settings/categories/PaperWalletSettings.js
Expand Up @@ -98,7 +98,7 @@ export default class PaperWalletSettings extends Component<Props> {
<div className={componentClassNames}>

<div className={styles.intro}>
<ReactMarkdown source={paperWalletsIntroText} />
<ReactMarkdown source={paperWalletsIntroText} escapeHtml={false} />
</div>

<Select
Expand Down
2 changes: 1 addition & 1 deletion app/components/widgets/InformativeMessage.js
Expand Up @@ -38,7 +38,7 @@ export default class InformativeMessage extends Component<Props> {
return (
<div className={messageStyle}>
{title && <h1>{title}</h1>}
{message && <ReactMarkdown source={message} />}
{message && <ReactMarkdown source={message} escapeHtml={false} />}
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion app/themes/skins/CheckboxOwnSkin.js
Expand Up @@ -56,7 +56,7 @@ export const CheckboxOwnSkin = (props: Props) => (
</label>
)}
{props.description && (
<ReactMarkdown source={props.description} />
<ReactMarkdown source={props.description} escapeHtml={false} />
)}
</div>
</div>
Expand Down

0 comments on commit 98fc559

Please sign in to comment.