Allow inline markdown in the changelog for linking to wiki
This commit is contained in:
parent
396caa52cf
commit
c73649b19b
|
@ -1,5 +1,6 @@
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
|
import InlineMarkdown from 'Components/Markdown/InlineMarkdown';
|
||||||
import styles from './UpdateChanges.css';
|
import styles from './UpdateChanges.css';
|
||||||
|
|
||||||
class UpdateChanges extends Component {
|
class UpdateChanges extends Component {
|
||||||
|
@ -25,7 +26,7 @@ class UpdateChanges extends Component {
|
||||||
changes.map((change, index) => {
|
changes.map((change, index) => {
|
||||||
return (
|
return (
|
||||||
<li key={index}>
|
<li key={index}>
|
||||||
{change}
|
<InlineMarkdown data={change} />
|
||||||
</li>
|
</li>
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue